2)#include<iostream.h>
main()
{
printf("Hello World");
}
the program prints Hello World without changing main() the
o/p should
be
intialisation
Hello World
Desruct
the changes should be
a)iostream operator<<(iostream os, char*s)
os<<'intialisation'<<(Hello World)<<Destruct
b) c) d)none of the above
Answer Posted / sheeba
a
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
how we can make 3d venturing graphics on outer interface
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Why can’t constant values be used to define an array’s initial size?
Whats s or c mean?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Is c still used?
How can you access memory located at a certain address?
What is the use of linkage in c language?
What is the right type to use for boolean values in c? Is there a standard type?
What is wrong with this declaration?
What is the general form of a C program?
Explain what does it mean when a pointer is used in an if statement?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
When should the register modifier be used? Does it really help?