how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answers were Sorted based on User's Feedback
Answer / prayas
#include<stdio.h>
main ()
printf ( "\"Hello\"" ) ;
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / akshat
we can use the ascii code for char " and then print it...
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / anveshbanti
#include<stdio.h>
void main ()
{
printf(""hello"");
}
| Is This Answer Correct ? | 4 Yes | 31 No |
What is a example of a variable?
What are data types in c language?
Can we add pointers together?
How can I implement a delay, or time a users response, with sub-second resolution?
What is the code in while loop that returns the output of given code?
Write a program of advanced Fibonacci series.
What are the 5 types of organizational structures?
Explain what are multidimensional arrays?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Is void a keyword in c?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }