Answers for "c while statements"

C
-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

Code answers related to "C"

Browse Popular Code Answers by Language