Pengulangan dengan While Loop


Kerangka while:
while (/* condition */)
{
    /* statement */
}

Contoh source code:
#include <stdio.h>

int main()
{
   int i = 0;
   
   while (i < 5)
   {
      printf("Hello world %d\n", i);
      i++; // counter agar kondisi tidak selalu bernilai benar
   }

   return 0;
}

Post a Comment