What is the maximum combined length of command line arguments including the space between adjacent arguments?
No Answer is Posted For this Question
Be the First to Post Answer
Why should you learn c++?
What is iomanip c++?
what is data abstraction in C++?
What is difference between shallow copy and deep copy? Which is default?
What is &x in c++?
why c++ is not called strictly d super set of c?
Mention the storage classes in c++.
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
Differentiate between late binding and early binding.
Does c++ have foreach?
What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
What is the use of default constructor?