Answer Posted / prabu
yes there is no return a value for void main function
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Tell us two differences between new () and malloc ()?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Can include files be nested? How many levels deep can include files be nested?
find out largest elemant of diagonalmatrix
Are global variables static in c?
what is the difference between 123 and 0123 in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What does the c in ctime mean?
Why isnt any of this standardized in c?
Explain what are multibyte characters?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
given post order,in order construct the corresponding binary tree
write a program to print largest number of each row of a 2D array
What does int main () mean?
What is an arrays?