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
Explain void pointer?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Explain what is the difference between functions getch() and getche()?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is use of pointer?
Explain how can I remove the trailing spaces from a string?
Do you know the use of fflush() function?
Can you mix old-style and new-style function syntax?
Do you know the difference between malloc() and calloc() function?
What is pointer & why it is used?
How to establish connection with oracle database software from c language?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is c token?
How important is structure in life?
Is it possible to pass an entire structure to functions?