How to write a multi-statement macro?
No Answer is Posted For this Question
Be the First to Post Answer
How is actual parameter different from the formal parameter?
What are extern variables in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
YBJBU6
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
differnce between do and do while
application of static variables in real time
int far *near * p; means
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
? ???Mirror Mirror on the wall????????
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }