Explain goto?
No Answer is Posted For this Question
Be the First to Post Answer
how to multiply two number taking input as a string (considering sum and carry )
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Is an array parameter is always "by reference" ?
WHOT IS CHAR?
Difference between for loop and while loop?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
why ordinary variable store the later value not the initial
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
C program to find all possible outcomes of a dice?
i need all types of question paper releted to "c" and other language.
What are the types of i/o functions?
where can function pointers be used?