We use library functions in the program, in what form they are provided to the program?
No Answer is Posted For this Question
Be the First to Post Answer
List out some of the OODBMS available?
What is ostream in c++?
Is c++ a float?
What is the best it certification?
What will happen if when say delete this ?
What are the differences between a struct in C and 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?
Can constructor be static in c++?
Explain the benefits of proper inheritance.
Is c++ a software?
What is c++ array?
Discuss the possibilities related to the termination of a program before entering the mainq method?