fork download
  1. #include<stdio.h>
  2.  
  3. void main()
  4. {
  5. int n=1,i;
  6. printf("Enter the value of i=");
  7. scanf ("%d",&i );
  8. while(n<=10){
  9. printf(" %d * %d = %d\n",n,i,n*i);
  10. n++;
  11.  
  12. }
  13. }
  14.  
Runtime error #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
Enter the value of i= 1 * 1433177677 = 1433177677
 2 * 1433177677 = -1428611942
 3 * 1433177677 = 4565735
 4 * 1433177677 = 1437743412
 5 * 1433177677 = -1424046207
 6 * 1433177677 = 9131470
 7 * 1433177677 = 1442309147
 8 * 1433177677 = -1419480472
 9 * 1433177677 = 13697205
 10 * 1433177677 = 1446874882