how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / banavathvishnu
main()
{
printf("%s","\"Hello \"");
}
| Is This Answer Correct ? | 27 Yes | 5 No |
Post New Answer View All Answers
What is ponter?
What extern c means?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What are external variables in c?
When is a null pointer used?
why we wont use '&' sing in aceesing the string using scanf
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Define Spanning-Tree Protocol (STP)
Who invented bcpl language?
Can one function call another?
What is the purpose of sprintf() function?
What is main () in c language?
What is the meaning of typedef struct in c?
What is action and transformation in spark?
What does *p++ do?