User profile: Aurelio

User info
User name:Aurelio
Name:Avi
Location:Allahabad
History
Joined:
Number of posts:8
Latest posts:

takes only one input
srry, but i didn't get the reason till now...

takes only one input
main() { 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...