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 / arjun
none of options is answer...
so option (a)shud b lyk ..
a) its not necessary to return any value
n dis will b correct in case of return type of function is
void
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / 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 |
Answer / shikhar
yes, the answer is a. In C, the function may or may not
return any value. In new languages like vb, dotnet....these
kind of functions are called "subroutines".
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vinod
hey guys but when main finishes its execution does it not return any value to the compiler that the main() executed successfully or not .
how will one know that main has executed successfully.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sharana basava
Ya... d ans wil be a. In c the func may or may not returns
d value......so the ans wil ne need not to return d
value... if tis is rit tan the func must have void as a
data type.. like void main..
| Is This Answer Correct ? | 0 Yes | 0 No |
Is printf a keyword?
int x=sizeof(!5.856); What will value of variable x?
What is the use of printf() and scanf() functions?
Are negative numbers true in c?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
what is the use of call back function in c?tell me with example
what is difference between ANSI structure and C99 Structure?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Program to simulate second clock
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it