how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / akshat
we can use the ascii code for char " and then print it...
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Do you know what are the properties of union in c?
Why is c so important?
how could explain about job profile
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
how should functions be apportioned among source files?
By using C language input a date into it and if it is right?
What is union and structure in c?
What are 3 types of structures?
what is uses of .net
What is table lookup in c?
Why calloc is better than malloc?
What is the purpose of main() function?
Explain what is the general form of a c program?
Can you please explain the difference between exit() and _exit() function?
What are the key features in c programming language?