C programming · Lesson
Observe how a sequence in the flowchart becomes a sequence of C statements executed in the same order.
A program moves from one statement to the next unless a control structure changes the flow.
START → output 1 → output 2 → END
Use Start and Step: when the active block changes, ConceptStep also highlights the C lines representing that same step.
Follow the visualization, watch the source highlight, then predict the result and press Run C to compare the actual output with your prediction.
1#include <stdio.h>
2
3int main(void)
4{
5 printf("Prima istruzione\n");
6 printf("Seconda istruzione\n");
7 return 0;
8}
Which message is printed first?
Progress: 0 / 5 · correct: 0
ConceptStep separates what is required from what is recommended or useful as reinforcement. Only required prerequisites block your progress.