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 |
Can a program have two main functions?
Can a local variable be volatile in c?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What does volatile do?
What are static functions?
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
What is wrong with this initialization?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
a C prog to swap 2 no.s without using variables just an array?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Which is the memory area not included in C program? give the reason