how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / prayas
#include<stdio.h>
main ()
printf ( "\"Hello\"" ) ;
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
How to throw some light on the b tree?
Can we initialize extern variable in c?
What are predefined functions in c?
What is 'bus error'?
What are the different types of errors?
What is omp_num_threads?
How can you determine the size of an allocated portion of memory?
What are the uses of null pointers?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
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.
What is use of pointer?
How old is c programming language?
How many types of sorting are there in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is the difference between declaring a variable by constant keyword and #define ing that variable?