Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / swetha
void add(int a,int b)
{
int c;
c=a+b;
printf("%d",c);
}
| Is This Answer Correct ? | 2 Yes | 14 No |
Post New Answer View All Answers
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is function and its example?
Why we use int main and void main?
What is wrong in this statement?
What is define directive?
Explain modulus operator.
Explain the binary height balanced tree?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
How do you search data in a data file using random access method?
What does %p mean?
How many bytes is a struct in c?
What is meant by high-order and low-order bytes?
What is the explanation for the dangling pointer in c?
What does void main () mean?
What does int main () mean?