0
What is error.
Tell me the error and how to overcome it. main() { int x=10; int y=20; int z; clrcsr() z=x+y; print("%d", z) ; }
8 Answers
+ 1
clrscr(); is correct but you wrote clrcsr() .So,change that to overcome your error
+ 1
Include stdio.h and conio.h header files at the top of program
0
I have corrected it but still getting erroe
0
And the error says it's Linker error
0
I have corrected it but still getting erroe
0
printf statement is used to print but you wrote print.
0
I have written printf also