Can u return two values using return keyword? If yes, how?
If no, why?
Answer Posted / abhijit roy
in c a function can only written one value
the return value could be of any data type
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Explain do array subscripts always start with zero?
#include
What are the 5 types of inheritance in c ++?
What is data type long in c?
Explain what is a pragma?
Why do we use int main instead of void main in c?
Explain what math functions are available for integers? For floating point?
Which is more efficient, a switch statement or an if else chain?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is the c value paradox and how is it explained?
Explain what are header files and explain what are its uses in c programming?
What is keyword in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
how we can make 3d venturing graphics on outer interface
Can stdout be forced to print somewhere other than the screen?