File Header
berikuta adalah nama file header beserta fungsi yg dapat diakses dgn file header tsb.#include <stdio.h> : scanf, printf, puts
#include <conio.h> : getch, clrscr, getche
#include <iostream.h> : cout, cin, endl
#include <iomanip.h> : setprecision,setw, setiosflags
kalo yg ne file header digunakan pada fungsi operasi string
#include <string.h> : strcat, strcmp, strcpy, strlen, strrev strlwr, strupr
#include <ctype.h> : strcat (jadi fungsi strcat harus menyertakan 2 file header )
#include <math.h> : atof,
#include <stdlib.h> : atoi, atol
Perintah keluaran dalam c++ antara lain
- printf
- cout
- puts
- putchar
Perintah masukkan dalam c++ antara lain
- scanf
- cin
- gets
- getch
- getche
..