What is true about the following
C Functions
a.Need not return any value
b.Should always return an integer
c.Should always return a float
d.Should always return more than one value.

Answers were Sorted based on User's Feedback



What is true about the following C Functions a.Need not return any value b.Should always re..

Answer / ani

b . should return a value

Is This Answer Correct ?    0 Yes 12 No

Post New Answer

More C Interview Questions

What is an auto keyword in c?

0 Answers  


main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


What is C language Terminator?

15 Answers   TCS,


main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }

8 Answers   Vector,


What are the concepts introduced in OOPs?

3 Answers  


write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word

1 Answers   Sienna Ecad, Wipro,


What is function prototype?

0 Answers  


what is ans for this scanf(%%d",c);

1 Answers  


enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


What is a lvalue

0 Answers   Global Logic,


Why do we use & in c?

0 Answers  


25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?

11 Answers   CTS, TCS,


Categories