how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / anveshbanti
#include<stdio.h>
void main ()
{
printf(""hello"");
}
| Is This Answer Correct ? | 4 Yes | 31 No |
Post New Answer View All Answers
Is c is a middle level language?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are the main characteristics of c language describe the structure of ac program?
What is mean by data types in c?
Is a pointer a kind of array?
Do pointers store the address of value or the actual value of a variable?
What happens if header file is included twice?
What is abstract data structure in c?
What is the maximum length of an identifier?
Explain what is operator promotion?
What are directives in c?
What is const keyword in c?
how can f be used for both float and double arguments in printf? Are not they different types?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What library is sizeof in c?