document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     #include <stdio.h>
  2.     int main ()
  3.     {
  4.         int square [100];
  5.         int i;  /*loop index*/;
  6.         int k;  /* the integer */
  7.  
  8.         /*calculate the squares*/
  9.         for (i=0; i<10; i++)
  10.             {
  11.                 k=i+1;
  12.                 square [i]=k*k;
  13.                 printf ("\\nPangkat dari %d adalah %d ", k, square [i]);
  14.             }
  15.         return 0;
  16.     }
');