Explain what?s happening in the first constructor: public
class c{ public c(string a) : this() {;}; public c() {;} }
How is this construct useful?
Answer / vijaykumar
When constructor public c(string a) is called to construct
an object, it first calls the default constructor then the
initialisation procedures in public c(string a).
| Is This Answer Correct ? | 4 Yes | 0 No |
Can we change the value of constant variable in c?
What are the ways to a null pointer can use in c programming language?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What is extern storage class in c?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
What is the use of gets and puts?
what is the mean of c languages.
How to calculate sum
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
char p="data"; printf(p);
how to write palindrome program?
What are the features of the c language?