Computer Science, asked by 2007Kavitha, 2 months ago

Any C++ learners. pls help me​

Attachments:

Answers

Answered by anindyaadhikari13
0

Answer:

This is the required cσde after filling up the blanks.

#include <iostream.h>

#include <conio.h>

void main()

{

      clrscr();

      cout <<"Try to fill";

      int a,b,s;

      cin>>a>>b;

      s=a+b;

      cout<<"Sum is "<<s;

}

So, the final answers are:

\dag\ \boxed{\begin{array}{c|c}\tt\underline{Number}:&amp;\tt\underline{Answer}:\\ \sf1&amp;\sf&lt;iostream.h&gt;\\ \sf2&amp;\sf main()\\ \sf3&amp;\sf clrscr\\ \sf4&amp;\sf cout\\ \sf5&amp;\sf cin\\ \sf6&amp;\sf &lt;&lt;\end{array}}

Explanation:

  • The <iostream.h> header file defines the standard input/output stream objects.
  • conio stands for "console input/output". This header file contains many inbuilt functions like clrscr(), getch() and so on.
  • The main() function is the starting point of execution.
  • clrscr() function is used to clear the output screen.
  • To print message, cout object is used. "c" refers to character and "out" refers to output. cout refers to character output.
  • The cin object is used to take input from the keyboard.

•••♪

Answered by stevenson007
0

hey kavitha remember me ....I came to brainly after a long time hw r u? this is Stevenson

Similar questions