#include <stdio.h> void main() { int i; printf("The first 5 natural numbers are:\n"); for (i=1;i<=5;i++) { printf("%d ",i); } printf("\n"); }