any restrictions have on the number of 'return' statements that may be present in a function.
a) no restriction
b) only 2 return statements
c) only 1 return statements
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is page thrashing?
Why is it usually a bad idea to use gets()? Suggest a workaround.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Write a function in c to find the area of a triangle whose length of three sides is given.
How can my program discover the complete pathname to the executable from which it was invoked?
Please list all the unary and binary operators in C.
What is this pointer in c plus plus?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is output redirection?
What is the purpose of void pointer?