which header file contains main() function in c?
Answer Posted / guruprasad
doesn't require any header file in function main(),
Because nothing else calls main. It is the entry point for
execution.
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
What are header files and what are its uses in C programming?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is openmp in c?
Explain how can I manipulate strings of multibyte characters?
Write a simple code fragment that will check if a number is positive or negative.
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
How can I split up a string into whitespace-separated fields?
Write a program of advanced Fibonacci series.
What is c basic?
What is a double c?
What is the use of ?: Operator?
What is static identifier?
Why do we use namespace feature?
What is the c value paradox and how is it explained?