answersLogoWhite

0

Build it, link it, run it.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Make programme for multification of three no in c plus plus?

result = a * b * c;


CAn you work in c or c plus plus without editor?

You can compile, link and execute programs without text-editor.


Can a user compile c programme using c plus plus compiler?

Usually, but not always. For example the following is legal in C, but illegal in C++: char new [3] = "ABC";


What are the steps in c plus plus?

Code, compile, link, run.


How do you write a programme to print a plus bi in c plus plus?

#include <iostream> int main() { std::cout << "a plus bi" << std::endl; return 0; }


How do you use this function in c programme?

I don't use that function in C programme.


Write a c plus plus programme to illustrate single inheritance?

struct A {}; // base class struct B : A {} // derived class (single inheritance).


How do you compile a C code in MS VS c plus plus?

Just build it with F7, or execute it with F5/F5. The MS VS Compiler understands the difference between C and C++. You can name the source file as something.C, if you want.


Why does sometimes when you run a program it will execute the previous program instead the current open program in C plus plus?

Because you aren't careful enough.


What are the steps in c plus plus program to print word computer?

std::cout<<"computer"<<std::endl;


Write a programme to find greater among two numbers in c plus plus?

You could use an if, but the ternary operator is especially compact for this purpose: result = a > b ? a : b;


What are the conditional statement of turbo c plus plus dos based?

Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.