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 / sunayana
d ans. is a.that it is nt neccsary for any c function to
return any value
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
How many types of functions are there in c?
Are negative numbers true in c?
What is meant by preprocessor in c?
Wt are the Buses in C Language
What is pass by reference in functions?
What is pointers in c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What are the functions to open and close file in c language?
What is use of integral promotions in c?
Place the #include statement must be written in the program?
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
What are high level languages like C and FORTRAN also known as?
Why is c used in embedded systems?
How do you print an address?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?