How can I increase the allowable number of simultaneously
open files?
what is the function of void main()?
regarding pointers concept
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
What is malloc() function?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
What is bash c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
how to write palindrome program?