Answer Posted / lakkup
structure:it holds dissimiliar datatypes when compared to
array.
function:it is used when an operation has to be done by
skipping some of the stepsi.e., function call
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is volatile keyword in c?
Explain why c is faster than c++?
What is the use of function overloading in C?
Explain bit masking in c?
What is a char in c?
What is data type long in c?
What is an auto variable in c?
Explain what is the advantage of a random access file?
What is unsigned int in c?
What are static variables in c?
When would you use a pointer to a function?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Is fortran still used in 2018?
Why clrscr is used after variable declaration?