What is the use of getch ()?
No Answer is Posted For this Question
Be the First to Post Answer
#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?
What is the best style for code layout in c?
User define function contain thier own address or not.
Why c is a procedural language?
what is the structure?
What are the types of assignment statements?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the purpose of & in scanf?
How reliable are floating-point comparisons?
what is difference between overriding and overloading?
what is the code to display color fonts in the output?
What are the uses of null pointers?