Problem | addition |
---|---|
User | jcoder12345 |
Submission Time | 2025-06-16 17:10:42 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:9:9: error: redeclaration of ‘int c’
9 | int c = a + b;
| ^
addition.cpp:7:6: note: ‘int c’ previously declared here
7 | int c;
| ^
addition.cpp:10:15: error: conflicting declaration ‘long long int c’
10 | long long c = 1000000000000;
| ^
addition.cpp:7:6: note: previous declaration as ‘int c’
7 | int c;
| ^