Computer Science, asked by himanojkumar, 10 months ago

Find theoutput
#include<stdlib.h>
#include<stdio.h>
enum {false,true);
intmain()

int x =1;
do {
printf("%d ",x);

x++;

if (x >5)
break;
} while(false);
return;

A. 12 34
B. 12345

C.1

D.5​

Answers

Answered by adfiroz95
0

Answer:

B

Explanation:

Similar questions