takes only one inputsrry, but i didn't get the reason till now...
takes only one inputmain() { int i; char c; for (i=0;i<5;i++) { scanf("%d",&c); printf("%d",c); } } Why the program...
References in c++int& preinc(int& x) { return ++x; // "return x++;" would have been wrong } preinc(y) = 5; /...
use of "delete"I am using gcc compiler
use of "delete"consider this code: class sample{ int i; public: void fun() { delete this; } }; void ma...