Answer Posted / pradeep
void main might return a value.
you should not assign to other variable.
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is sizeof c?
what will be maximum number of comparisons when number of elements are given?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Differentiate between declaring a variable and defining a variable?
What is int main () in c?
What is an identifier?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
How do I use void main?
What is call by value in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Write a program to generate random numbers in c?
What is struct node in c?
In C language what is a 'dangling pointer'?
How can you avoid including a header more than once?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above