Write a program that takes value from user and Declare Signed and unsigned


Coding of Program 
#include<iostream>
using namespace std;
int main()
{
int signed a;
int unsigned b;
cout<<" enter First integer "<<endl;
cin>>a;
cout<<" enter second integer "<<endl;
cin>>b;
cout<<a;
cout<<b;
cout<<"Student's Roll No:  K-F16-ES-33"<<endl;
 }


Output of the Program












1 comment:

Total Pageviews