R
Q. What is the output of C Program with functions and pointers?
int myshow(int); void main() { int a=10; myshow(a); myshow(&a); } int myshow(int b) { printf("Received %d, ", b); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following will be the type of ‘res’?
Q. What will be output for the following code?
Q. Arithmetic operations are not allowed on enumerated constants.
Q. Every C Program must have one function called?
Q. When do you need to use type-conversions?
Q. Choose a correct statement about FGETS in C program
Q. What is the output of this program?
Q. What is the output of C Program with switch statement or block?
Discusssion
Login to discuss.