Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / lakkup
it is an inbuilt function i.e, main() it indicates the
starting of the program and it is a user defined function
when the user defines it as void main() or int main(void).
| Is This Answer Correct ? | 6 Yes | 13 No |
Post New Answer View All Answers
What is meant by errors and debugging?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What are variables c?
How can I write a function analogous to scanf?
What are the c keywords?
What is New modifiers?
Are bit fields portable?
What kind of structure is a house?
What is the size of a union variable?
What is struct node in c?
What is pragma c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is an auto keyword in c?
What is the process of writing the null pointer?
#include