Whether there can be main inside another main?If so how does
it work?
Answer Posted / jagadish
main()
{
clrscr();
printf("");
getch();
}
| Is This Answer Correct ? | 5 Yes | 31 No |
Post New Answer View All Answers
What does char * * argv mean in c?
Explain how can you avoid including a header more than once?
In C language what is a 'dangling pointer'?
What is mean by data types in c?
What is variable in c example?
Can we declare variable anywhere in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is || operator and how does it function in a program?
simple program of graphics and their output display
What is data type long in c?
How can I access an I o board directly?
What are the different types of data structures in c?
What is the use of getchar() function?
What is class and object in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above