with out using main how to execute the program?
Answers were Sorted based on User's Feedback
Answer / pradeep
It is not a c program if it is not using main function.
Compiler starts execution from main function always.
| Is This Answer Correct ? | 18 Yes | 4 No |
Answer / sagar
In any C program, it must contain main function..........
So, it is not possible to run any program without main
function .......
| Is This Answer Correct ? | 5 Yes | 5 No |
What is encapsulation?
how to return 1000 variables from functio9n in c?plz give me code also
main() { int i; printf("%d",i^i); }
Why c is called a mid level programming language?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
write a code for large nos multilication (upto 200 digits)
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
List some applications of c programming language?
How is actual parameter different from the formal parameter?
Explain what is wrong with this program statement? Void = 10;
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
in malloc and calloc which one is fast and why?