Created
December 24, 2014 17:26
-
-
Save iKlotho/8afede91c1d129e6083f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void bilgilerimi_goruntule() | |
{ | |
system("cls"); | |
system("cls"); | |
FILE *fileptr1; | |
char ch; | |
//open file in read mode | |
fopen_s(&fileptr1, "user_information.dat", "r"); | |
ch = getc(fileptr1); | |
while (ch != '\n') | |
{ | |
printf("%c", ch); | |
ch = getc(fileptr1); | |
} | |
fclose(fileptr1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment