How many levels of indirection in pointers can you have in a single declaration?
Juxtapose the use of override with new. What is shadowing?
How many parameters should a function have?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is array in c with example?
i need all types of question paper releted to "c" and other language.
Explain what is operator promotion?
Write a progarm to find the length of string using switch case?
What is use of #include in c?
What is preprocessor with example?
Why we use stdio h in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
can u give me the good and very optimised code for a car racing game?