a function gets called when the function name is followed by a
a) semicolon (;)
b) period(.)
c) !
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Explain demand paging.
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What does a pointer variable always consist of?
Why is c called a mid-level programming language?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
What are type modifiers in c?
what are the advantages of a macro over a function?
Explain which function in c can be used to append a string to another string?
What is c language in simple words?
What is the purpose of & in scanf?
What is echo in c programming?