What is the output of the following program main();{printf
("chennai""superkings"};
a. Chennai
b. superkings
c. error
d. Chennai superkings
Answer Posted / bhargavi
Chennai superkings
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
What is pointer to pointer in c?
What is stack in c?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What are the c keywords?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Why do we use main function?
What is echo in c programming?
How can I dynamically allocate arrays?
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
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is the difference between NULL and NUL?
What is identifiers in c with examples?
How to write a multi-statement macro?
Explain the properties of union. What is the size of a union variable