Use the pico editor to create a source code text file named lab. c: pico Write a
ID: 3769380 • Letter: U
Question
Use the pico editor to create a source code text file named lab. c: pico Write a small C program that prints the numbers 1 to 100 to the screen Remember: printf ('"/,d", i) will print that value of an int variable named i to the screen And printf (" ") will print a newline character to the screen Save this program/text file Compile your program using gcc: gcc lab.c Edit your source code and repeat steps (d) - (e) until your program compiles (no errors) Run your program to ensure it works correctly: ./a.out If needed go back to step (b) and revise the programExplanation / Answer
I am giving you the c program to print the integers from 1 to 100. follow the instrunctions after this.
#include <stdio.h>
int main(){
int i;
for(i=1;i<=100;i++){
printf("%d",i);
printf(" " );
}
getch();
return 0;
}
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.