What is the difference between void main() and int main()?
Answer / nashiinformaticssolutions
void main() is not standard; int main() is required by the C standard to return an integer.
| Is This Answer Correct ? | 0 Yes | 0 No |
What the advantages of using Unions?
how does printf function work
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Please list all the unary and binary operators in C.
why do we use # in c-language?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What are shell structures used for?
How can you convert integers to binary or hexadecimal?
What is the explanation for cyclic nature of data types in c?
What is cohesion and coupling in c?
can we initialize all the members of union?