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
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 |
What is the easiest sorting method to use?
Differentiate between Macro and ordinary definition.
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
What is the use of a static variable in c?
Program to trim a given character from a string.
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What does %2f mean in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
what is meant by c
Are negative numbers true in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Why cann't whole array can be passed to function as value.