macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration
Answers were Sorted based on User's Feedback
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What type of function is main ()?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is variables in c?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
Can we compile a program without main() function?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
What is static function in c?
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
What is the best way to comment out a section of code that contains comments?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
What is pointer to pointer in c with example?