String Functions in C
Typing Speed: 28

Ismail
Ismailpk456@gmail.com
Ismail Ismu
Ismail Ismu
in.linkedin.com/in/profilename
8086303494
Header File
Header File is a file that allows
programmers to separate certain
elements of a program's source code into
reusable files. Header files commonly
contain forward declarations of classes,
subroutines, variables, and other
identifiers.
Steps in Header File Creation
1. File->New->Project...
2. Main Toolbar->New file (button)->File...
Example
#ifndef CAL_H_INCLUDED
#define CAL_H_INCLUDED
int calc (int a, int b)
{
int add;
add=a+b;
return (add);
}
#endif
#include <iostream>
#include "cal.h"
using namespace std;

int main()
{
int a,b,add;
cout<<"Enter Two numbersn";
cin >>a>>b;
add=calc(a,b);
cout<<"sum="<<add<<endl;
}
If this presentation helped you, please visit our
page facebook.com/baabtra and like it.

Thanks in advance.
www.baabtra.com | www.massbaab.com |www.baabte.com
Contact Us
Emarald Mall (Big Bazar Building)
Mavoor Road, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550

Start up Village
Eranakulam,
Kerala, India.
Email: info@baabtra.com

NC Complex, Near Bus Stand
Mukkam, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
THE END

Header creation in CPP

  • 2.
    String Functions inC Typing Speed: 28 Ismail Ismailpk456@gmail.com Ismail Ismu Ismail Ismu in.linkedin.com/in/profilename 8086303494
  • 3.
    Header File Header Fileis a file that allows programmers to separate certain elements of a program's source code into reusable files. Header files commonly contain forward declarations of classes, subroutines, variables, and other identifiers.
  • 4.
    Steps in HeaderFile Creation 1. File->New->Project...
  • 5.
    2. Main Toolbar->Newfile (button)->File...
  • 6.
    Example #ifndef CAL_H_INCLUDED #define CAL_H_INCLUDED intcalc (int a, int b) { int add; add=a+b; return (add); } #endif
  • 7.
    #include <iostream> #include "cal.h" usingnamespace std; int main() { int a,b,add; cout<<"Enter Two numbersn"; cin >>a>>b; add=calc(a,b); cout<<"sum="<<add<<endl; }
  • 8.
    If this presentationhelped you, please visit our page facebook.com/baabtra and like it. Thanks in advance. www.baabtra.com | www.massbaab.com |www.baabte.com
  • 9.
    Contact Us Emarald Mall(Big Bazar Building) Mavoor Road, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 Start up Village Eranakulam, Kerala, India. Email: info@baabtra.com NC Complex, Near Bus Stand Mukkam, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550
  • 10.