/in/ex3.c: In function 'main':
/in/ex3.c:5:52: warning: unused variable 'temp' [-Wunused-variable]
char sentence[100],word[10],c;int i,n=0,flag=1,temp=0;size_t lw,ls;
^~~~
/in/ex3.c:5:45: warning: unused variable 'flag' [-Wunused-variable]
char sentence[100],word[10],c;int i,n=0,flag=1,temp=0;size_t lw,ls;
^~~~
/in/ex3.c:7:30: warning: iteration 10 invokes undefined behavior [-Waggressive-loop-optimizations]
for(i=0;i<11;i++) word[i]=0;
~~~~~~~^~
/in/ex3.c:7:5: note: within this loop
for(i=0;i<11;i++) word[i]=0;
^~~
/in/ex3.c:6:35: warning: iteration 100 invokes undefined behavior [-Waggressive-loop-optimizations]
for(i=0;i<101;i++) sentence[i]=0; //initialize the array
~~~~~~~~~~~^~
/in/ex3.c:6:5: note: within this loop
for(i=0;i<101;i++) sentence[i]=0; //initialize the array
^~~