Computer Science, asked by robilefrancis123, 3 months ago

wite a program using c to display integer numbers less than 50​

Answers

Answered by jai696
1

\large\mathsf\color{pink}{Solution\: using\: C}

#include <stdio.h>

int main() {

int i;

for(i = 0; i <= 50; i++) {

printf("%d\n", i);

}

return 0;

}

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Japji21
0

Answer:

#include <stdio.h>

int main() {

int i;

for(i = 0; i <= 50; i++) {

printf("%d\n", i);

}

return 0;

}

Similar questions