Welcome To The World Of Hacking


Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code

Wednesday

C++ TUTORIAL 5: OVERWRITE

#include <iostream>
using namespace std;

int main()
{
    int data = 20;
    data = 30; //After overwrite the new value of data becomes 30

    cout<<"Data :"<< data;
    return 0;
}

OUTPUT:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...