which header file contains main() function in c?
Answer Posted / neha
If main() is UDF,then UDF r part of the program which compile runtime but in simple program we also use ctrl+F9 to run program?give me ans pls
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between array and pointer?
Write a C program to count the number of email on text
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
write a program to rearrange the array such way that all even elements should come first and next come odd
How can I read and write comma-delimited text?
Explain the red-black trees?
How many loops are there in c?
Who developed c language?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is #pragma statements?
List out few of the applications that make use of Multilinked Structures?
Why clrscr is used after variable declaration?
What is data structure in c programming?
How can I implement a delay, or time a users response, with sub-second resolution?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function