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

#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


List some of the dynamic data structures in C?

0 Answers  


What are pointers? Why are they used?

0 Answers  


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

0 Answers  






What is union and structure?

0 Answers  


how to find your architecture is LittleEndian or BigEndian?

1 Answers  


How many types of operator or there in c?

0 Answers  


c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

0 Answers  


What are header files? What are their uses?

0 Answers  


What is a class?

3 Answers  


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers   Calsoft,


Categories