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 are the primitive data types in c?
#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); }
Write a C program in Fibonacci series.
What are variables and it what way is it different from constants?
How are variables declared in c?
Should I learn data structures in c or python?
how we can make 3d venturing graphics on outer interface
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
How can I find out how much free space is available on disk?
What are dangling pointers in c?
What are pointers?
What is variable initialization and why is it important?
What is auto keyword in c?
Explain what is the difference between null and nul?
why return type of main is not necessary in linux