-
Storage Class and Storage Variables
What is Storage Class?
What are Storage Variables? -
-
What is the difference between declaring a variable and defining a variable?
Declaring a variable means describing its type to the compiler but not allocating any space for it. Defining a variable means declaring it and also allocating space to hold the variable. You can also initialize a variable at the time it is defined.
-
-
-
}
plz simplify the statement the 2 .when i run program gives undefined symbol p..but in a/c mcq that is correct ..say collect address of i ..how?? ">1)what is RTTI in c++?2)main(){ int i=10; int &p=i; //statement 2printf("%d %d"i,p);}plz simplify the statement the 2 .when i run program gives undefined symbol p..but in a/c mcq that is correct ..say collect address of i ..how??
-
-
-
-
Pointer to Unsingned int
Why it is not possible to create pointer to unsingned int?
-
-
-
If the following program (myprog) is run from the command line as myprog monday tuesday wednesday thursday What would be the output? main(int argc, char *argv[]) { while(--argc >0) printf("%s",*++argv); }
A) myprog monday tuesday wednesday thursdayB) monday tuesday wednesday thursdayC) mondaytuesdaywednesdaythursdayD) myprog tuesday thursday
-
-
-
-
-
-
-
C Interview Questions
Ans