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:30: note: 'p3' was declared here
int dd = 5555555, 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:26: note: 'p2' was declared here
int dd = 5555555, 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:22: note: 'p1' was declared here
int dd = 5555555, p1, p2, p3;
^