O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
#include<stdio.h> # include<math.h> void main() { int i,j=0,k= -9; clrscr(); printf(“\t Table of 1 to 100 Numbers Using ASCII Values \n”); printf(“\t ===== == = == === ======= ===== ===== ======\n”); for(i=48;i<=57;i++,k++) { for(j=49;j<=57;j++) printf(“%5c%c”,i,j); if(k!=1) printf(“%5c%c”,i+1,48); if(k==0) printf(“\b\b%d%d%d”,k+1,k,k); printf(“\n\n”); } getch(); }
▶ Run Code
🖥 Output: