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


Please Help Members By Posting Answers For Below Questions

What is a good way to implement complex numbers in c?

596


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1492


Is there any demerits of using pointer?

631


How to write a code for reverse of string without using string functions?

1580


Explain the meaning of keyword 'extern' in a function declaration.

726






what is use of malloc and calloc?

1384


Are the variables argc and argv are always local to main?

574


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

733


What is pre-emptive data structure and explain it with example?

3211


What is a wrapper function in c?

590


Is there a way to compare two structure variables?

617


How many data structures are there in c?

617


Distinguish between actual and formal arguments.

591


What are the different types of data structures in c?

608


What should malloc() do?

645