Int True
Int True
C++ is designed to be compiled language. This means that it is generally translated into machine
language that can directly understood by the system, generating the program highly efficient. A set of
tools were needed, known as the development toolchain ,whose core are compiler and its linker.
Variables in C++:
#include<iostream>
#include<string>
int main() {
// declaring variables
int myNum=5
return 0;
Swapping 2 variables :
int main () {
b temp;
Return 0;