Answer Posted / shaheen
The expectation you have from a function is the return type
you can use(returntype) is called void here the example
void FunctionName(); here void is used when no meaning ful
value is return(simply int c=0; it does not return a value)
shaheen(mca)
kaikalur
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
Did c have any year 2000 problems?
How do c compilers work?
What are inbuilt functions in c?
Difference between macros and inline functions? Can a function be forced as inline?
Is there sort function in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
The file stdio.h, what does it contain?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
In c programming language, how many parameters can be passed to a function ?
why do some people write if(0 == x) instead of if(x == 0)?
Write a program to generate the Fibinocci Series
What is a structure member in c?
What is a structural principle?
How many types of errors are there in c language? Explain
I need a sort of an approximate strcmp routine?