print ur name without using any semicolon in c/c++....
Answer Posted / amit mishra
#include<stdio.h>
void main()
{
if (clrscr())
if(printf("\n Asheesh sharma"))
{
}
if(printf("\n Asha sharma"))
{
}
if(printf("\n Amit mishra"))
{
}
if(printf("\n Ankit mishra"))
{
}
if(getch())
{
}
}
| Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
Does c have class?
What does *p++ do? What does it point to?
Can we replace the struct function in tree syntax with a union?
How can you determine the size of an allocated portion of memory?
Tell me what are bitwise shift operators?
What is string length in c?
What is the process to create increment and decrement stamen in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How can you be sure that a program follows the ANSI C standard?
What is ponter?
What is 2 d array in c?
What do you mean by a sequential access file?
What is the difference between call by value and call by reference in c?
How do we make a global variable accessible across files? Explain the extern keyword?
Why we use void main in c?