Perulangan for dalam bahasa pemrograman c
Nov 21, 2021
Add Comment
Kerangka for:
for (/* start */; /* condition */ ; /* counter */)
{
/* statement */
}
Contoh source code:
#include <stdio.h>
int main()
{
for (int i = 0; i < 5; i++)
{
printf("Hello world %d\n", i);
}
return 0;
}
atau
#include <stdio.h>
int main()
{
int i;
for (i = 0; i < 5; i++)
{
printf("Hello world %d\n", i);
}
return 0;
}
0 Response to "Perulangan for dalam bahasa pemrograman c"
Post a Comment