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
When a c file is executed there are many files that are automatically opened what are they files?
How can I get random integers in a certain range?
int far *near * p; means
What is the difference between functions getch() and getche()?
Do you know pointer in c?
What are header files and what are its uses in C programming?
How do we make a global variable accessible across files? Explain the extern keyword?
Can true be a variable name in c?
What are compound statements?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
what will be maximum number of comparisons when number of elements are given?
What is a shell structure examples?
What is c language and why we use it?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.