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 |
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
What is the usage of the pointer in c?
What is an lvalue and an rvalue?
how to devloped c lenguege?
what is the use of ~ in c lang?????
Are the variables argc and argv are local to main?
If I have a char * variable pointing to the name of a function ..
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is #define?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What is mean by data types in c?
What are pointers in C?