What is the auto keyword good for in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How do you clear a set in c++?
What are the differences between java and 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?
What does the ios::ate argument do?
How to write a program such that it will delete itself after exectution?
describe private access specifiers?
WHO DEVELOPED C++?
What does floor mean in c++?
What is abstraction in c++?
What are raw sockets, where they are efficient?
How to give an alternate name to a namespace?
Differentiate between declaration and definition.