Preview:
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
int main(){
    int nums[10];

    nums[0]=5;
    nums[3]=2;
    nums[9]=3;

    printf("%d%d%d\n",nums[0],nums[3],nums[9]);
    printf("(Garbage):%d%d%d\n\n",nums[1],nums[4],nums[7]);

    printf("Warning:\n");
    nums[10]=9;
    printf("%d\n\n",nums[10]);
    
    

return 0;


}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter