What is meaning of "Void main" in C Language.
Answer Posted / rohit
void mean no return type. and main does not return any value so we use void main .
| Is This Answer Correct ? | 73 Yes | 23 No |
Post New Answer View All Answers
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What are the advantages of Macro over function?
How can I copy just a portion of a string?
What are the three constants used in c?
Is using exit() the same as using return?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is the purpose of main( ) in c language?
What is the difference between scanf and fscanf?
What is dynamic dispatch in c++?
What are the applications of c language?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain union.
Explain what is a const pointer?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What language is lisp written in?