/in/foo.c: In function 'main':
/in/foo.c:7:9: warning: statement with no effect [-Wunused-value]
7 | scanf str[100];
| ^~~~~
/in/foo.c:7:14: error: expected ';' before 'str'
7 | scanf str[100];
| ^~~~
| ;
/in/foo.c:10:23: warning: implicit declaration of function 'sizeod' [-Wimplicit-function-declaration]
10 | for(int i=0;i<sizeod(str);i++){
| ^~~~~~
/in/foo.c:11:27: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
11 | if (str[i]="("){
| ^
/in/foo.c:11:21: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
11 | if (str[i]="("){
| ^~~
/in/foo.c:14:27: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion]
14 | if (str[i]=")"){
| ^
/in/foo.c:14:21: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
14 | if (str[i]=")"){
| ^~~
/in/foo.c:18:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
18 | if(k=j){
| ^