Skip to main content

Who Else Wants To Know The Mystery Behind C++ Output ?

 C++ Output (Print Text)

The cout object, together with the << operator, is used to output values/print text:




for example ;


#include <iostream>

using namespace std;


int main() {

  cout << "Hello World!";

  return 0;

}






Note: You can add as many cout objects as you want. However, note that it does not insert a new line at the end of the output:




#include <iostream>

using namespace std;


int main() {

  cout << "Hello World!";

  cout << "I am learning C++";

  return 0;

}






Comments

Popular posts from this blog

The Secret of Successful TOP MOBILE BRANDS #bbk electronics

Everything you should know about BBK Electronics, its founder, brands & products, and net worth. The name BBK Electronics might not sound common to many out there, but, if you’ve used an Oppo, Vivo, OnePlus, Realme, or iQOO smartphone before, then you’ve used a BBK Electronics product. What is BBK Electronics? BBK Electronics. It markets smartphones under the Realme, OPPO, Vivo and OnePlus brands, and Blu-ray players, headphones and headphone amplifiers under the OPPO Digital division. BBK Electronics: Meet the world’s 2nd largest smartphone manufacturer you’ve probably never heard. Apple and Samsung are undeniably the most popular smartphone brands today. Shipping almost 300 million units last 2019, Samsung easily beats the pack to become the world’s largest phone manufacturer. All of this is expected because everybody’s heard about Samsung, and everybody either owns a Samsung phone or knows somebody who does. But what do you know about BBK Electronics, the world’s second-largest ...

How to make 12V 1A SMPS Power Supply Circuit Design

Every Electronic device or product requires a reliable power supply unit (PSU)operate it. Almost all devices in our home, like TV, Printer, Music Player,etc. consists of a power supply unit built into it which converts the AC mains voltage to a suitable level of DC voltage for them to operate. The most commonly used type of power supply circuit is the SMPS (Switching Mode Power Supply), you can easily find this type of circuits in your 12V adapter or Mobile/Laptop charger. In this tutorial, we will learn how to build a 12v SMPS circuit that would convert AC mains power to 12V DC with a maximum current rating of 1.25A. This circuit can be used to power small loads or even be adapted into a charger to charge you lead-acid and lithium batteries. If this 12v 15watt power supply circuit doesn’t match your requirement, you can check various power supply circuit with different ratings. Before proceeding with any kind of power supply design, requirement analysis has to be done based on the...