Practicals C,C++,C#,VB and Shell Script
1: #include<stdio.h>
2: #include<conio.h>
3: void main()
4: {
5: int k;
6: pritf("\nDecimal Octal Hexadecimal");
7: for(k=0;k<=16;k++)
8: printf("%5d %5o %5x",k,k,k);
9: getch();
10: }
No comments:
Post a Comment