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
Is c is a high level language?
Explain the properties of union.
What is the advantage of an array over individual variables?
Should I learn data structures in c or python?
What are the preprocessor categories?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
How to explain the final year project as a fresher please answer with sample project
What is an array? What the different types of arrays in c?
Do you know what are bitwise shift operators in c programming?
Is register a keyword in c?
What are preprocessor directives in c?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What are identifiers and keywords in c?
How can you invoke another program from within a C program?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?