Why is main function so important?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Is there any book to know about Basics of C Language?
Which is best linux os?
How can I call a function with an argument list built up at run time?
What is difference between arrays and pointers?
What are the disadvantages of c language?
how to find a 5th bit is set in c program
Why the use of alloca() is discouraged?
c program to manipulate x=1!+2!+3!+...+n! using recursion
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Is there a way to jump out of a function or functions?