- 2
#include <stdio.h> int main() { int a, b; float salary = 56.23; char letter = 'Z'; a = 8; b = 34; int c
Can some one tell me what is wrong with this code
5 Answers
+ 2
In the last line the "int c" there is a missing semicolon so it should be "int c;" and also it will give you unused variable error because you're not using its value
0
and there's no closing bracket.
0
What error did you get? something like "unused variable" if so then that's because you have not used any of the variable and they take up memory so the compiler warns you about it
0
Manash Anand yeah and who puts the code in the title? the title got a strict word limit
- 1
No that's a copy paste mistake I just copy select all and then paste it but it delete last two of the character