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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a simple program to find the size of different basic data types in C.

3 Answers  


What is a shell structure examples?

0 Answers  


What is && in c programming?

0 Answers  


How many types of sorting are there in c?

0 Answers  


void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?

4 Answers   Groupon,






int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā€œ%dā€,*(*(x+1)+3));

2 Answers   Wipro,


Explain why can’t constant values be used to define an array’s initial size?

0 Answers  


Write the following function in C. stripos ā€” Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.

3 Answers   Google, Infosys, JTL, OpenFeel,


how to swap 2 numbers within a single statement?

4 Answers  


What is file in c language?

0 Answers  


Describe dynamic data structure in c programming language?

0 Answers  


the format specified for hexa decimal is a.%d b.%o c.%x d.%u

7 Answers   TCS,


Categories