Answers for "how to code in c++"

C++
7

how to code in c++

help me i dont now what the freak am doing any more
Posted by: Guest on November-28-2020
2

c++ basic code

#include <iostream>
#include<conio.h> /* For getch() only */
using namespace std;
int main () {
   int num = 10;
            if (num % 2 == 0)
            {
                cout<<"It is an even number";
            }
getch();  /* getch is the function of conio.h */
}
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language