pemograman C++ menggunakan fungsi

| Kamis, 29 November 2012 | 0 komentar |

Contoh pemogram C++ menggunakan fungsi
dalam program kalkulator

ini snapshot pada saat program di jalankan

pengertian fungsi dalam C++ beserta contohnya (version english & indonesia)

| Kamis, 22 November 2012 | 0 komentar |

IN ENGLISH VERSION

The function is a block of instruction that is executed when called by other instructions in one line of the program elsewhere. The format of the function is as follows:
Type_data name_function ( type_data argument1, tipe_data argument2, ...)
{
Instruction;
Instruction;
.
.
.
}
data type is a data type that is returned by the function.

Coding menghitung kata dalam kalimat dalam C++

| Kamis, 08 November 2012 | 0 komentar |


#include "stdafx.h"
#include<stdio.h>
#include<iostream.h>
#include<ctype.h>

void main()
{