Click here to Skip to main content
15,911,039 members

Comments by soumava chakraborty (Top 5 by date)

soumava chakraborty 3-May-11 16:06pm View    
its not happening sir....I have tried...C compiler does not allowing me to search the file.
soumava chakraborty 3-May-11 16:01pm View    
thanks a lot sir..I will try my level best
soumava chakraborty 3-May-11 15:19pm View    
First of all I have tried to open a file in the given directory...the relevant cde is here...

#include <stdio.h>
#include<conio.h>
void main( )
{
FILE *fp;
char c;
funny = fopen("C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.1\data\sonu-712ed62385.pid", "r");
if (fp == NULL)
printf("File doesn't exist\n");
else {
do {
c = getc(fp); /* get one character from the file
*/
putchar(c); /* display it on the monitor
*/
} while (c != EOF); /* repeat until EOF (end of file)
*/
}
fclose(fp);
getch();
}

but the problem is that the file can't be searched..it shows that there is no file..

I have also write a program to check the partition of a computer.
soumava chakraborty 2-May-11 11:52am View    
I am using MySQL on windows.
soumava chakraborty 1-May-11 4:14am View    
yes sir,,I am giving my best to do this.I have got the success to connect mysql database through a c program.can you help me in this case??thanks for your concern..