If one class contains another class as a member, in what order are the two class constructors called
a) Constructor for the member class is called first
b) Constructor for the member class is called second
c) Only one of the constructors is called
d) all of the above
What library is sizeof in c?
logic for x=y^n
Is c# a good language?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is pivot in c?
What is a stream water?
4. main() { int c=- -2; printf("c=%d",c); }
how to make program without <> in library.
If null and 0 are equivalent as null pointer constants, which should I use?
what is the difference between procedure oriented and object oriented progaming language
What will be the output of x++ + ++x?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.