/in/foo.c: In function 'main':
/in/foo.c:26:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
26 | if(a[j]>a[j+1]);
| ^~
/in/foo.c:27:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
27 | a[j]=t;
| ^
/in/foo.c:19:13: warning: iteration 5 invokes undefined behavior [-Waggressive-loop-optimizations]
19 | a[c]=e;
| ~~~~^~
/in/foo.c:17:20: note: within this loop
17 | for(int e;c<=5;c++){
| ~^~~
/in/foo.c:21:9: warning: array subscript 5 is above array bounds of 'int[5]' [-Warray-bounds]
21 | printf("%d %d %d %d %d\n",a[1],a[2],a[3],a[4],a[5]);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/in/foo.c:5:13: note: while referencing 'a'
5 | int a[5];
| ^
/in/foo.c:27:29: warning: 't' is used uninitialized [-Wuninitialized]
27 | a[j]=t;
| ~~~~^~
/in/foo.c:23:13: note: 't' was declared here
23 | int t;
| ^