Answers for "do-while in c"

C
8

do whie loop

do{
----
} while(condition);
Posted by: Guest on June-21-2020
-1

do-while in c

#include <stdio.h>
int main()
{
	int j=0;
	do
	{
		printf("Value of variable j is: %d\n", 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