Skip to content

Instantly share code, notes, and snippets.

@AlexsJones
Created January 4, 2012 13:17
Show Gist options
  • Save AlexsJones/1559993 to your computer and use it in GitHub Desktop.
Save AlexsJones/1559993 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
FILE *fp;
fp = fopen("/Users/jonesax/Destkop/Scheduler/second.txt","r");
if( fp == NULL )
{
printf("\ncouldnt find");
return -1;
}
printf("success!");
fclose(fp);
return 0;
}
~
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment