c program to print a name without using semicolon
Answer Posted / amegha
main()
{
if(printf("AMEGHA")
{
}
}
| Is This Answer Correct ? | 36 Yes | 17 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Why doesn't C support function overloading?
What are the types of type specifiers?
What are the two types of functions in c?
List the difference between a "copy constructor" and a "assignment operator"?
What is the purpose of main( ) in c language?
What is #include called?
Difference between exit() and _exit() function?
How can I write functions that take a variable number of arguments?
When c language was developed?
Do pointers store the address of value or the actual value of a variable?
What is structure data type in c?
What is unary operator?
Differentiate between ordinary variable and pointer in c.
What are global variables and how do you declare them?