Define macros.
No Answer is Posted For this Question
Be the First to Post Answer
How can I trap or ignore keyboard interrupts like control-c?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
How do you determine whether to use a stream function or a low-level function?
can anyone suggest some site name..where i can get some good data structure puzzles???
What is meant by int fun const(int a, int b) { .... ... }
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What are the different types of control structures in programming?
Does c have function or method?
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
Explain what header files do I need in order to define the standard library functions I use?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }