- 2
Void main() { Int x = 10; Int *y = (&x); Int ***z = (&y); Printf("%d %d %d", **z, *y, x); }
4 Respostas
+ 4
Remove all int uppercase and one * in the line "int ***z" and it should be good.
+ 4
10 10 10
+ 4
your tag is wrong, it should be either c++ or c
- 1
if u put like that wts will the output