#include <stdio.h>
int main() {
int x = "15";
printf("%d", x);
return 0;
}
gcc test.c -o test
test.c: In function ‘main’:
test.c:3:13: warning: initialization of ‘int’ from ‘char *’ makes integer from pointer without a cast [-Wint-conversion]
3 | int x = "15";
| ^~~~