Compiler output
prog.cpp: In function 'int main()':
prog.cpp:25:26: warning: 'p3' may be used uninitialized in this function [-Wmaybe-uninitialized]
return ((char)('0' + i));
^
prog.cpp:65:28: note: 'p3' was declared here
int dd = 55555, p1, p2, p3;
^
prog.cpp:25:26: warning: 'p2' may be used uninitialized in this function [-Wmaybe-uninitialized]
return ((char)('0' + i));
^
prog.cpp:65:24: note: 'p2' was declared here
int dd = 55555, p1, p2, p3;
^
prog.cpp:25:26: warning: 'p1' may be used uninitialized in this function [-Wmaybe-uninitialized]
return ((char)('0' + i));
^
prog.cpp:65:20: note: 'p1' was declared here
int dd = 55555, p1, p2, p3;
^