Can a program have multiple main() functions?
Answer / nashiinformaticssolutions
No, only one main() function is allowed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why is c called a structured programming language?
Tell me can the size of an array be declared at runtime?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
write a program to display & create a rational number
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
what is unsigened char and what is the difference from char
What is file in c preprocessor?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
when to use : in c program?
what is C?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.