Hi when i run the code it did not show me anything, is there anything that i had missed out or what? Thank for the help
Code:
#include<stdio.h> #define N_ELEMS 5 void main(void) { int array[N_ELEMS]; int i; for(i=0;i<N_ELEMS;i++) array[i]=i; for(i=0;i<N_ELEMS-1;) array[++i]++; }
Comment