#include <stdio.h> int main() { int a[5],i; for (i=0;i<5;i++) { scanf ("%d",&a[i]); } printf ("The numbers are"); for (i=0;i<5;i++) { printf ("\n %d",a[i]); } return 0; }
To embed this program on your website, copy the following code and paste it into your website's HTML: