How many main () function we can have in a project?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
what is c
Place the #include statement must be written in the program?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Explain the use of #pragma exit?
What are predefined functions in c?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What is the difference between calloc() and realloc()?
how do you execute a c program in unix.
what is the use of keyword volatile??
biggest of two no's with out using if condition statement