which header file contains main() function in c?
Answer Posted / raj
Please if u don't know answer then don't post comment..
Please search stdio.h file
it doesn't contain main function declaration
thanks
| Is This Answer Correct ? | 36 Yes | 0 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What are unions in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Explain how do you determine the length of a string value that was stored in a variable?
If the size of int data type is two bytes, what is the range of signed int data type?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What are the functions to open and close file in c language?
What is p in text message?
What are the disadvantages of external storage class?
Is that possible to add pointers to each other?
What is the benefit of using const for declaring constants?
What is the difference between c &c++?
Write a program to implement queue.
What are extern variables in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?