Commit 29bbb025 by emonyi

Upload New File

parent 29aa7df5
Showing with 24 additions and 0 deletions
/*
* Bonus Task 1
* */
#include <stdio.h>
#include <stdlib.h>
int main(){
int i;
int array[10];
for(i=0; i < 10; i++){
array[i]=10 - i;
}
for(i=0; i < 10; i++){
printf("%d\n", array[i]);
}
return 0;
}
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