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 will be the output of x++ + ++x?
What is the best way to comment out a section of code that contains comments?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
List the difference between a While & Do While loops?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
program for comparing 2 strings without strcmp()
Prove or disprove P!=NP.
What is sizeof return in c?
What happens if header file is included twice?
what is the diference between pointer to the function and function to the pointer?