C++ Introduction

Status
Not open for further replies.

c++

Newbie
Joined
Oct 20, 2017
Messages
11
Reaction score
9
C++,
My username say's utter about me :)
Yes, Am a Programmer who writes code for many kinds of software. Nice to meet you guys,,

#Include <stdio.h>
#include <conio.h>
Void Main ()
{
clrscr () ;
Print f ("C++ introduction in BHW forum")
Scan f ("welcome", & input) ;
getch () ;
return 0;
}

 
You sure .h include is still used? Years ago when I started with c++, I recal that type of include was outdated and doesnt work on new compilers. I forgot most of my cpp.
 
thank you++ :)
 
C++,
My username say's utter about me :)
Yes, Am a Programmer who writes code for many kinds of software. Nice to meet you guys,,

#Include <stdio.h>
#include <conio.h>
Void Main ()
{
clrscr () ;
Print f ("C++ introduction in BHW forum")
Scan f ("welcome", & input) ;
getch () ;
return 0;
}

#include <iostream.h>

using namespace std;

int main(void)
{
cout << "\nWelcome to BHW!" << endl << "I'm sure you'll like it here!";

return 0;
}
 
  • Like
Reactions: c++
#include <iostream.h>

using namespace std;

int main(void)
{
cout << "\nWelcome to BHW!" << endl << "I'm sure you'll like it here!";

return 0;
}

welcome to c++ Programming :)
 
I just had flashbacks of my commodore 64... then i remembered my first 286 pc that I used to dial up to BBS's... ahhh... the good old days! Welcome C++, although I prefer VB.NET myself. Why are you not C#?
 
#Include <stdio.h>
#include <conio.h>
Void Main ()
{
clrscr () ;
Print f ("C++ introduction in BHW forum")
Scan f ("welcome", & input) ;
getch () ;
return 0;


This is not a c++ progrm.Actually,it is a c program.
the right c++ program:

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"C++introduction in BHW forum";
}

Anyway, Warm welcome to BHW forum.
 
Super brain, Good Brain than you ..
Welcomed C++

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"Hope you may do best in programming field";
}

- Star* Player


welcome C and C++ to BHW Forum :)

{
<Hope you may do best in programming field>..
}
:)
 
Status
Not open for further replies.
Back
Top