#include <stdio.h> int main() { int j=0; do { printf("Value of j variable is: %d\n", j); j++; }while (j<=3); return 0; }