I have a text file named MySQL.txt having the following contents :
MySQL_IP:172.19.1.173
MySQL_USER:kok
MySQL_PASS:kok
MySQL_DATABASE:kok
I am trying to read the contents of the file using the following code
#include<stdio.h>
main()
{
FILE *fp;
char str[50000];
fp = fopen("MySQL.txt","r");
fgets(str,sizeof(str),fp);
printf("%s\n",str);
}
No matter how much i increase the size of the string buffer,i am provided with teh output which is :
MySQL_IP:172.19.1.173
which is just the first line...I fail to fathom the reason !!!