What is the difference between fread and fwrite function?
No Answer is Posted For this Question
Be the First to Post Answer
How can I list all of the predefined identifiers?
i have a written test for microland please give me test pattern
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
How can I find out how much free space is available on disk?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
When should the const modifier be used?
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
Will Macros support multiple arguments ?
What do you mean by Recursion Function?
How can I call a function with an argument list built up at run time?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Is c functional or procedural?