Answers for "do while C"

C
1

boucle for c

int compteur;

for (compteur = 0 ; compteur < 10 ; compteur++)
{
    printf("Salut les Zeros !n");
}
Posted by: Guest on November-15-2020
-1

do-while in c

#include <stdio.h>
int main()
{
	int j=0;
	do
	{
		printf("Value of variable j is: %dn", j);
		j++;
	}while (j<=3);
	return 0;
}
Posted by: Guest on December-08-2020
-2

whiel loop in C

while (testExpression) 
{
    // statements inside the body of the loop 
}
Posted by: Guest on October-08-2020

Code answers related to "C"

Browse Popular Code Answers by Language