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
What is the maximum no. of arguments that can be given in a command line in C.?
What is volatile variable in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What are the difference between a free-standing and a hosted environment?
c program to compute AREA under integral
What is c definition?
Differentiate between the expression “++a” and “a++”?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
How main function is called in c?
What is the difference between int main and void main in c?
What is the difference between arrays and pointers?
What are the rules for identifiers in c?
What is sizeof return in c?
What is a void pointer? When is a void pointer used?
How can you allocate arrays or structures bigger than 64K?