how can i print "hello"

Answer Posted / ajithbalaji

Both r wrong


#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is typedef example?

607


Is main a keyword in c?

619


What is a rvalue?

738


What is else if ladder?

603


What does == mean in texting?

653






What is wrong in this statement?

595


What is a class c rental property?

597


Where static variables are stored in c?

578


What language is c written?

568


Why we use void main in c?

584


What does calloc stand for?

641


Write a program to swap two numbers without using the third variable?

587


What is #ifdef ? What is its application?

638


What oops means?

570


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

3681