21. |
What is the output?
int show(int b)
|
||||||||
Answer:
Option (b) |
22. |
What is the return-type of the function sqrt()?
|
||||||||
Answer:
Option (c) |
23. |
Choose correct statements about C Language pass by value.
|
||||||||
Answer:
Option (d) |
24. |
What is the output?
int myshow(int b)
|
||||||||
Answer:
Option (c) |
25. |
What is the output?
int myshow(int *);
|
||||||||
Answer:
Option (b) |
26. |
What is the output?
void myshow(int *);
|
||||||||
Answer:
Option (c) |
27. |
Following function belongs to which category?
void print10() { printf("10"); }
|
||||||||
Answer:
Option (b) |
28. |
Following function belongs to which category?
int get10(void) { return 10; }
|
||||||||
Answer:
Option (c) |
29. |
Following function belongs to which category?
void showNumber(int num) { printf("Number: %d", num); }
|
||||||||
Answer:
Option (a) |