Postingan

Menampilkan postingan dengan label C++

Kepanjangan CMF - Sepak Bola

Kepanjangan dari CMF: Centre Mid Fielder Pengertian dari CMF : Pemain tengah yang berperan sebagai pengatur lapangan tengah. Contoh penggunaan dari CMF:

Kepanjangan CB - Sepak Bola

Kepanjangan dari CB : Centre Back Pengertian dari CB : Pemain belakang/bertahan yang berposisi pada bagian tengah. Contoh penggunaan dari CB :

CEO

Kepanjangan dari CEO: Chief Executive Officer Pengertian dari CEO : Direktur Eksekutif Contoh penggunaan dari CEO:

CITOS

Kepanjangan dari CITOS : Cilandak Town Square Pengertian dari CITOS : Sebuah pusat hiburan di daerah Cilandak, Jakarta Selatan. Contoh penggunaan dari CITOS :

Advice For Smartphone Application Development

There is a period when telephones were a novelty. These were limited to the house or certain designated areas. These were then freed and mobile technology permitted individuals to make telephone calls on the go. With smartphone database integration there's a multitude of options having a phone which go beyond simply making calls. You will get a variety of programs. For instance if you wish to

How to sort an array�s elements

Here we have used Bubble Sort algorithm. First we will take the array�s elements. For this we have used scanf() function. Then we will sort the array�s elements using Bubble Sort Algorithm. #include #include void main() { int a[20],N; clrscr(); printf("How many item:"); scanf("%d",&N); printf("Enter items :\n");

Making Pyramid with C/C++

#include #include void main() { int i = 0, j , n ; clrscr(); printf("How many rows in pyramid:"); scanf("%d",&n); while(i { j=0; while(j<=i) { gotoxy(30+j,10+i); printf("%d",j); j++; } j=0; while(j<=i) {

Sorting and Searching Program with C/C++ Language

Sorting and Searching is an important task in programming. Here we will see such a C Program. This program is used to sorting and searching a string array. Running this program we will provide names and given names are sorted and searched by the program. Programmingcode is given bellow : #include #include #include struct name // Custom Data Type