What is the explanation for prototype function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is stack in c?
What are the disadvantages of c language?
What is the heap in c?
Differentiate between functions getch() and getche().
Derive the complexity expression for AVL tree?
what is the function of pragma directive in c?
how can we print hellow world programme without using semicolon
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
what is the difference between global variable & static variable declared out side all the function in the file.
What is the difference between exit() and _exit()?
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));