prog.cpp: In function 'int main()':
prog.cpp:9:15: error: cannot convert 'int*' to 'double*' in initialization
double* p = &i;
^
prog.cpp:11:4: error: cannot convert 'char*' to 'double*' in assignment
p = &c;
^
prog.cpp:13:4: error: cannot convert 'float*' to 'double*' in assignment
p = &f;
^
prog.cpp: At global scope:
prog.cpp:18:1: error: 'Success' does not name a type
Success
^