answersLogoWhite

0

#include <iostream>

int main (void)

{

std::cout << "\nBitwise AND (&):\n";

for (int a=0; a<=1; ++a)

for (int b=0; b<=1; ++b)

std::cout << a << " & " << b << " is " << a & b << std::endl; std::cout << "\nLogical AND (&&):\n";

for (int a=0; a<=1; ++a)

for (int b=0; b<=1; ++b)

std::cout << a << " && " << b << " is " << a && b << std::endl;

return 0;

}

User Avatar

Wiki User

7y ago

What else can I help you with?

Related Questions

What is a table that lists activities and the times they happen?

A timetable or programme.


How do you say table in Kikuyu language?

Table can be translated into Kikuyu language as metha.


What table is called in Marathi language?

what is called table in marathi language


What is a display of data?

A visual display of data is called a chart, table or a graph.


What is the time table of HSC Time Table February 2008?

just display time table


What type of fountain makes a good table top display?

A type of fountain that makes a good table top display is statue water fountains that provide excellent design, quality, and service to make your table top display beautiful.


What is a frequency table used for?

To display data


What is Visual display of data?

A visual display of data is called a chart, table or a graph.


What is the timetable of Diploma 1th semester for msbte exam time table winter 2008?

when r exam time table gone be display. when r exam time table gone be display.


Is corner the command used to make the size of the table columns reflect the data in the columns?

No, &quot;corner&quot; is not a command used for that purpose. &quot;corner&quot; is a command in some programming languages to refer to the upper-left corner of a table or a window. To make the size of table columns reflect the data, you may need to use commands or functions related to data processing or formatting in the specific programming language or software you are using.


What is a tag when using Html?

A Tag in HTML can be compared to a keyword in any programming language. It instructs the browser about how the subsequent pieces of text must be parsed and displayed. A Tag in HTML is enclosed within the &lt;&gt; symbols. Any text between the &lt;HTML&gt; and &lt;/HTML&gt; tags is considered HTML content and the browser will handle it the way HTML code is to be handled. There are numerous tags available in HTML. Some are * &lt;BR&gt; - Line Break * &lt;HR&gt; - Horizontal Line * &lt;TABLE&gt; - To display a table (Like a spreadsheet with heading &amp; cells) * &lt;FORM&gt; - To display UI forms * etc...


What type of control in a form can display data from database table?

A DataGridView control in a Windows Forms application can display data from a database table. You can bind the DataGridView to a data source such as a DataTable or a collection of objects, and it will automatically display the data from the database table in a tabular format.