What is an undefined behavior and sequence points
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Write a program which uses Command Line Arguments
Define vptr.
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
what Is DCS ? what i will get benefit when i did?
What is the default width for ouputting a long integer using the insertion operator?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Which operations are permitted on pointers?
When does a name clash occur?
How to declare an array of pointers to integer?
Program to check whether a word is a sub-string or not of a string typed
Is c++ pass by reference or value?