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
Answers were Sorted based on User's Feedback
Explain the properties of union.
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
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
multiple of 9 without useing +,* oprator
What are high level languages like C and FORTRAN also known as?
What are pointers in C? Give an example where to illustrate their significance.
Explain what is the benefit of using an enum rather than a #define constant?
What is calloc in c?
what is a function pointer and how all to declare ,define and implement it ???
How do you sort filenames in a directory?
Explain how can you tell whether two strings are the same?
Is there a way to compare two structure variables?