c program to print a name without using semicolon

Answer Posted / rajesh dixit

#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I determine whether a character is numeric, alphabetic, and so on?

621


Is fortran faster than c?

577


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

610


Write a program to swap two numbers without using a temporary variable?

604


What are conditional operators in C?

621






What is dynamic variable in c?

562


What are the advantages of union?

624


What does *p++ do? What does it point to?

613


What is pointers in c with example?

579


Why isnt there a numbered, multi-level break statement to break out

586


What is the use of bitwise operator?

685


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

766


Give differences between - new and malloc() , delete and free() ?

606


What is sizeof return in c?

612


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

803