Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

over 4 years ago

Language

C

Compiler

gcc 10.1.0

Options
Warnings
C99
-pedantic

Author

anonymous

over 4 years ago

$ gcc prog.c -Wall -Wextra -std=c99 -pedantic
prog.c: In function 'Q':
prog.c:5:9: warning: unused variable 'temp' [-Wunused-variable]
    5 | int i,j,temp,**dp;
      |         ^~~~
prog.c:4:26: warning: unused parameter 'k' [-Wunused-parameter]
    4 | int Q(int m, int n, int *k, int **c){
      |                     ~~~~~^
prog.c:4:35: warning: unused parameter 'c' [-Wunused-parameter]
    4 | int Q(int m, int n, int *k, int **c){
      |                             ~~~~~~^
0
Exit Code:
0