Find the smallest number in a table
#include <stdio.h> int main(void) { int i,n,m,t[50]; printf("How long do you want your table? :"); scanf("%d",&n); for (i=0;i<n;i++){ printf("enter the %d number :",i+1); scanf("%d",&t[i]); } m=t[0]; for (i=0;i<n;i++){ if (m>t[i]) m=t[i]; } printf("The smallest number in this table is : %d\n",m); return 0; }