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 |
Is file a keyword in c?
What are the advantages of Macro over function?
Explain how do you declare an array that will hold more than 64kb of data?
What is the difference between functions abs() and fabs()?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Explain how to reverse singly link list.
Is c a great language, or what?
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
What is scope rule of function in c?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
what type of errors are checked during compilation
what is meant by the "equivalence of pointers and arrays" in C?