When is the “void” keyword used in a function?
When used as a function return type, the void keyword specifies that the function doesn't return a value. When used for a function's parameter list, void specifies that the function takes no parameters. When used in the declaration of a pointer, void specifies that the pointer is "universal."
| Is This Answer Correct ? | 0 Yes | 0 No |
what are the stages of compilation
What is array in c with example?
c program to compute AREA under integral
What does %c mean in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What are the rules for the identifier?
every function has return the value?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Why is not a pointer null after calling free?
What is the 'named constructor idiom'?
Explain what are the different data types in c?
Why do we use & in c?