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.
Answer Posted / ningappa
a.Need not return any value
| Is This Answer Correct ? | 56 Yes | 2 No |
Post New Answer View All Answers
What is the use of static variable in c?
Should I learn data structures in c or python?
Do you know the purpose of 'register' keyword?
What is #include conio h?
#include
What are directives in c?
What is structure data type in c?
Explain what are multidimensional arrays?
The difference between printf and fprintf is ?
What is the benefit of using an enum rather than a #define constant?
What is a ternary operator in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Tell us two differences between new () and malloc ()?