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 ..

Answer / devendra kumar gupta

need not return any value

Is This Answer Correct ?    18 Yes 3 No

What is true about the following C Functions (a) Need not return any value ..

Answer / seema choudhary

(a) Need not return any value
b'caz all statements has using the return type

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More C Interview Questions

Write a C program that reads a series of strings and prints only those ending in "ed"

2 Answers   Accenture,


Write a c program to print the even numbers followed by odd numbers in an array without using additional array

1 Answers   Tech Mahindra,


which one is better structure or union?(other than the space occupied )

2 Answers  


What is the difference between a free-standing and a hosted environment?

0 Answers   Aspire,


‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.

0 Answers  






A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference

0 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


what does ‘Bus Error’ mean?

1 Answers   ABC,


how to write a bubble sort program without using temporary variable?

1 Answers   Aricent,


What is the scope of local variable in c?

0 Answers  


what is the structure?

4 Answers   TCS,


what is an array

5 Answers  


Categories