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


Please Help Members By Posting Answers For Below Questions

How can you access memory located at a certain address?

680


Explain how does flowchart help in writing a program?

645


write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

3348


What is the use of static variable in c?

601


What are the properties of union in c?

602






How do you print only part of a string?

622


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

771


what is the role you expect in software industry?

1670


Can include files be nested? How many levels deep can include files be nested?

666


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1631


What is define c?

588


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1678


What is nested structure with example?

643


Difference between pass by reference and pass by value?

670


How will you declare an array of three function pointers where each function receives two ints and returns a float?

793