N4

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#include<conio.h>
int main()
{
int rollno,a=143,b=1,c=0,d=-1;
printf("Enter the Roll number : ");
scanf("%d",&a);
printf("decimal=%d octal=%o hexadecimal=%x\n",rollno,rollno,rollno);
printf("decimal=%d octal=%o hexadecimal=%x\n",a,a,a);
printf("decimal=%d octal=%o hexadecimal=%x\n",b,b,b);
printf("decimal=%d octal=%o hexadecimal=%x\n",c,c,c);
printf("decimal=%d octal=%o hexadecimal=%x\n",d,d,d);
return 0;
}

You might also like