Commit f0218809 by ilahma

Upload New File

parent 0bb31983
Showing with 13 additions and 0 deletions
#include <stdio.h>
int main() {
int i;
int number[10];
for(i=10; i>=1; i--)
{
number[i]=i;
printf("%d\n",number[i]);
}
printf("\n");
return 0;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment