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 |
Tell me what are bitwise shift operators?
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
Explain the use of bit fieild.
How is pointer initialized in c?
Find MAXIMUM of three distinct integers using a single C statement
how to write optimum code to divide a 50 digit number with a 25 digit number??
void main() { int i=5; printf("%d",i++ + ++i); }
c program to manipulate x=1+3+5+...+n using recursion
Can we assign string to char pointer?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is zero based addressing?