answersLogoWhite

0

C++ is designed to be as generic as possible. As such, printing is text-mode only, just as the console is designed for text-mode only. There are no graphics routines in the standard library. To gain graphics output, including image printing, you need an API and library for your specific platform and hardware.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What are the books to study C Plus Plus?

Smart-C: Complete Programming Book available on Flipkart (Rating - 5 Star) The book deals with one such Great programming language “C”. The book is designed to help the reader program in C. Great care has been taken in making the content interesting and understandable. Each module is added with multiple graphic images to make content easily understandable


What is a over c plus b over c?

You add 2 fractions with the same denominator [c], so the sum is the sum of the numerators divided by the denominator: a/c + b/c = (a+b)/c


How do you compare an image pixel by pixel in C plus plus?

In order to compare images pixel by pixel, both images must be uncompressed bitmaps of the same size, dimensions and colour depth. If you're looking for an exact match, then you simply compare the pixels in tandem (you can treat both images as being an array of int to speed up the process).


Write a c program to add 2 no without using plus operator?

You can make use of pointers to achieve this.void add( int *a, int *b){(*a) += (*b);}Now if two numbers a and b are given and you need to store the value in variable c, then you would perform:c = a;add(&c,&b);


What does c plus plus use call by value or call by reference?

When we call a function in C++ by passing the values as arguments, it is called call by value. e.g #include<iostream.h> #include<conio.h> int add(int,int); int main() { int a,b,c; cout<<"Enter numbers."; cin>>a>>b; c=add(a,b); cout<<"Sum : "<<c; return 0; } int add(int a,int b) { int c; c=a+b; return c; }

Related Questions

How do we add the C plus plus category in Netbeans?

To use C++ in Netbeans you will need a C++ compiler.


How do you add more than two numbers in C plus plus?

sum = a + b + c;


What is the need for c plus plus?

Primarily to add object oriented programming methods to the C language.


Is there any benefit in a C plus plus program to add two matrices?

No.


What did C plus plus add to the C language?

Object-oriented programming principals, a more consistent syntax and improved type-safety.


How do you know when you need to use addition?

When you see this sign: + plus add plus add ++++++++ , but not when you see : A+, B+, C+, D+. That is your grade. By: super answerer


What are the books to study C Plus Plus?

Smart-C: Complete Programming Book available on Flipkart (Rating - 5 Star) The book deals with one such Great programming language “C”. The book is designed to help the reader program in C. Great care has been taken in making the content interesting and understandable. Each module is added with multiple graphic images to make content easily understandable


What is a plus c?

That depends how much "a" is, and how much "c" is. You can basically assign any value to these variables (letters); then add them up to get "a + c".


How to complete this C plus plus End Of File controlled while loop program?

Add the missing parts.


What is the verbal expression for c plus 2d?

The verbal expression for "c plus 2d" can be stated as "the sum of c and twice d." This indicates that you take the value of c and add it to two times the value of d.


How do you declare a string array and add elements to it in C plus plus?

You cannot add elements to a fixed array in C or C++. If, however, the array is declared as a pointer to an array, you can add elements by allocating a new array, copying/adding elements as needed, reassigning the new array to the pointer, and deallocating the original array.


-12 plus c equals 19?

-12 + c = 19 Add 12 to both sides: c = 19+12 = 31