What is the output of the following program main();{printf
("chennai""superkings"};
a. Chennai
b. superkings
c. error
d. Chennai superkings
Answer Posted / steve booth
The character strings will be concatenated, but NO space will be inserted between the first and second. The correct answer is "chennaisuperkings".
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What is getch() function?
What are the valid places to have keyword “break”?
What is data types?
How can I avoid the abort, retry, fail messages?
Is c procedural or functional?
What is a pointer variable in c language?
What are the types of macro formats?
What is data structure in c programming?
Is c# a good language?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Was 2000 a leap year?
Explain how can I remove the trailing spaces from a string?
Explain About fork()?
Are negative numbers true in c?
what is a constant pointer in C