What is meaning of "Void main" in C Language.
Answer Posted / sonali panda
The main function does not return any information to the
operating system.
| Is This Answer Correct ? | 187 Yes | 61 No |
Post New Answer View All Answers
What is the difference between fread buffer() and fwrite buffer()?
What is the scope of local variable in c?
What is a function in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
how logic is used
What is calloc()?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How to set file pointer to beginning c?
Explain what are the __date__ and __time__ preprocessor commands?
Explain how can you determine the size of an allocated portion of memory?
What is quick sort in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is LINKED LIST? How can you access the last element in a linked list?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What are the application of void data type in c?