What is true about the following C Functions
(a) Need not return any value
(b) Should always return an integer
(c) Should always return a float
(d) Should always return more than one value
Answers were Sorted based on User's Feedback
Answer / seema choudhary
(a) Need not return any value
b'caz all statements has using the return type
| Is This Answer Correct ? | 6 Yes | 1 No |
Why void main is used in c?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Differentiate fundamental data types and derived data types in C.
how to find the sizof of any datatype using bit manipulations
What is break statement?
can v write main() { main(); } Is it true?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
What does %c mean in c?
where do we use volatile keyword?
c program to manipulate x=1!+2!+3!+...+n! using recursion
What is the difference between formatted&unformatted i/o functions?