what will be the output for the following
main()
{
printf("hi" "hello");
}
Answer Posted / sumesh
the output of this question will be hihello (without any blank space).
| Is This Answer Correct ? | 28 Yes | 2 No |
Post New Answer View All Answers
Explain how can I pad a string to a known length?
What is sizeof int in c?
What are the benefits of organizational structure?
How can I trap or ignore keyboard interrupts like control-c?
What are 3 types of structures?
explain what is an endless loop?
What is the difference between struct and typedef struct in c?
What is malloc calloc and realloc in c?
What is a good way to implement complex numbers in c?
What is the basic structure of c?
Is return a keyword in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What does %p mean c?
How can I find the modification date and time of a file?
How many loops are there in c?