What is optimization in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between constant pointer and constant variable?
what is the advantage of software development
What are the differences between Structures and Arrays?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Why void main is used in c?
Which node is more powerful and can handle local information processing or graphics processing?
How do I copy files?
Is there sort function in c?
What do you know about the use of bit field?
what is diference between return 0 and return NULL??
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
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?