McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Programming for Problem Solving
→
How Many Main() Function We Can Have In ...
Q.
How Many Main() Function We Can Have In Our Project?
A.
1
B.
2
C.
No Limit
D.
Depends On Compiler
Answer» A. 1
4.1k
0
Do you find this helpful?
22
View all MCQs in
Programming for Problem Solving
Discussion
No comments yet
Login to comment
Related MCQs
Is It Possible To Run Program Without Main() Function?
How many times C.com is printed? int main() { int a = 0; while(a++ < 5-++a) printf("C.com"); return 0; }
How many times C.com is printed? int main() { int a = 0; while(a++ < 5) printf("C.com"); return 0; }
How many times C.com is printed? int main() { int a = 0; while(a++) printf("C.com"); return 0; }
How many times C.com is printed? int main() { int a = 0; while(++a) { printf("C.com"); } return 0; }
Any type of modification on the parameter inside the function will reflect in actual variable value can be related to..
What is maximum dimension that array can have in c programming?
Int Main() { Extern Int I; I = 20; Printf("%D", Sizeof(I)); Return 0; }
Int Main() { Int X = 10; { Int X = 0; Printf("%D",X); } Return 0; }
//This Program Is Compiled On 32 Bit DEV-C++ Int Main() { Char *Ptr1, *Ptr2; Printf("%D %D", Sizeof(Ptr1), Sizeof(Ptr2)); Return 0; }