Sunday, March 17, 2013

Use Of typedef

#include<iostream>
using namespace std;
int main()
{
    typedef int su;
    su a=10;
    su b=5;
    cout<<a+b;
    return 0;
}

0 comments:

Post a Comment