Answer Posted / nirmal kumar tailor
main() is the important part of the programe.
main() defines scope of the programe and all working in
this scop means execute the programe in between this block
all programe execution with the main() function.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are the different data types in C?
Explain the concept and use of type void.
What are the 3 types of structures?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Is calloc better than malloc?
What is difference between constant pointer and constant variable?
Do array subscripts always start with zero?
Write programs for String Reversal & Palindrome check
What is 1d array in c?
Where static variables are stored in memory in c?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the correct code to have following output in c using nested for loop?
Why c is called object oriented language?
what is a function method?give example?