Spot the Errors: C++ Code Debugging Challenge - Easy Level #c++ #programming #short

preview_player
Показать описание
Sharpen your coding skills by tackling this quick challenge! Identify and fix the errors in a simple C++ program. Test your debugging prowess and practice writing clean code. Are you up for the challenge?
Рекомендации по теме
Комментарии
Автор

You used extraction operator in we use insertion operator in cin

Error Found At :
std::cin<<number1;

Solution :
std::cin>>number1;

TamannaGraphics
Автор

1.Cin>> number1;
2.number1+number2;

vijayfanboy