What is the difference between the = symbol and == symbol?
No Answer is Posted For this Question
Be the First to Post Answer
what is an inline function?
what are the compilation steps? ( i want inside the compiler )
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
write a c program in such a way that if we enter the today date the output should be next day's date.
How can I remove the leading spaces from a string?
where do we use volatile keyword?
What is actual argument?
Dear Sir, we are required the bubble sorting programs Regs Prem
Why flag is used in c?
Do pointers store the address of value or the actual value of a variable?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Explain what is the stack?