Pages

Subscribe:

Tuesday, April 10, 2012

Materi KKI UB Kampus (4) Kediri

Silahkan Download Materi KKI UB Kampus (4) Kediri di Link Bawah ini.
Download : Materi KKI.

Form Beasiswa KKI UB Kampus 4

Bagi teman-teman KKI Universitas Brawijaya Kampus (4) Kediri yang telah direkomendasikan untuk persyaratan BEASISWA sebagai tanda keaktifan di Organisasi, silahkan download Formnya di link bawah ini.
Isikan data yang belum diisi.

Download Form di sini : Beasiswa_KKI.rar

Monday, January 30, 2012

Windows 7

Windows 7
Part of the Microsoft Windows family
Windows 7 logo.svg
Windows 7.png
Screenshot of Windows 7 Ultimate
Developer
Microsoft Corporation
Website Official Website
Releases
Release date RTM version: July 22, 2009
Retail version: October 22, 2009 [info]
Current version 6.1 (Build 7601: Service Pack 1) (February 22, 2011; 10 months ago) [info]
Source model Closed source / Shared source
License Proprietary commercial software
Kernel type Hybrid
Update method Windows Update
Platform support IA-32 and x86-64
Preceded by Windows Vista
Succeeded by Windows 8 (to be released late 2012)
Support status
Mainstream support until January 13, 2015.
Extended support until January 14, 2020.
Further reading
Windows 7 is the current release of Microsoft Windows, a series of operating systems produced by Microsoft for use on personal computers, including home and business desktops, laptops, netbooks, tablet PCs, and media center PCs. Windows 7 was released to manufacturing on July 22, 2009, and reached general retail availability worldwide on October 22, 2009, less than three years after the release of its predecessor, Windows Vista. Windows 7's server counterpart, Windows Server 2008 R2, was released at the same time.
Unlike Windows Vista, which introduced a large number of new features, Windows 7 was intended to be a more focused, incremental upgrade to the Windows line, with the goal of being compatible with applications and hardware with which Windows Vista was already compatible. Presentations given by Microsoft in 2008 focused on multi-touch support, a redesigned Windows shell with a new taskbar, referred to as the Superbar, a home networking system called HomeGroup, and performance improvements. Some standard applications that have been included with prior releases of Microsoft Windows, including Windows Calendar, Windows Mail, Windows Movie Maker, and Windows Photo Gallery, are not included in Windows 7; most are instead offered separately at no charge as part of the Windows Live Essentials suite.

Tuesday, January 24, 2012

Software Definition

Computer software, or just software, is a collection of computer programs and related data that provides the instructions for telling a computer what to do and how to do it. Software refers to one or more computer programs and data held in the storage of the computer for some purposes. In other words, software is a set of programs, procedures, algorithms and its documentation concerned with the operation of a data processing system. Program software performs the function of the program it implements, either by directly providing instructions to the computer hardware or by serving as input to another piece of software. The term was coined to contrast to the old term hardware (meaning physical devices). In contrast to hardware, software "cannot be touched". Software is also sometimes used in a more narrow sense, meaning application software only. Sometimes the term includes data that has not traditionally been associated with computers, such as film, tapes, and records.

History

The first theory about software was proposed by Alan Turing in his 1935 essay Computable numbers with an application to the Entscheidungsproblem (Decision problem). The term "software" was first used in print by John W. Tukey in 1958. Colloquially, the term is often used to mean application software. In computer science and software engineering, software is all information processed by computer system, programs and data. The academic fields studying software are computer science and software engineering.
The history of computer software is most often traced back to the first software bug in 1946. As more and more programs enter the realm of firmware, and the hardware itself becomes smaller, cheaper and faster as predicted by Moore's law, elements of computing first considered to be software, join the ranks of hardware.

Kode

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>

int main () {
    char s[50];
    int i;
    printf("Masukkan sembarang Teks :   "); gets(s);

    for(i=0;i<50;i++){
        printf("s[%d]=%c =>%d\n",i,s[i],s[i]);
    }
    printf("\ns=%s\n\n",s);
    system("PAUSE");
    return(0);
   
}

Array Shuffle

#include<stdio.h>
#include<stdlib.h>

int main()


    int i,j;
    int n[10]={15,9,1,7,5,4,6,2,7,9};
    for(i=0;i<10;i++){
        printf("%5d",n[i]);
        for(j=1;j<=n[i];j++)printf("%c","*");
        printf("\n");
    }
    system("PAUSE");
    return(0);
}

Array +

#include<stdio.h>
#include<stdlib.h>

int main(){
    int i,j;
    int n[10] ={0,1,2,3,4,5,6,7,8,9};
    for(i=0;i<10;i++){
                         printf("%5d",n[i]);
                         for(j=1;j<=n[i];j++)printf("%c","*");
                         printf("\n");
                         }
    system("PAUSE");
    return(0);
}

Menetas dan bertambah

#include <stdio.h>
#include <stdlib.h>

int main() {
int b;
printf("zzzzzzzzzzzzzzzzzzzz\n");
printf("Anak Bebbek\n");
printf("zzzzzzzzzzzzzzzzzzzz\n");
printf("Jumlah anak bebek sekarang = ");scanf("%d",&b);

Hitung Anak Ayam

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>


int main ()
{
int i;
printf("===========================\n");
printf(" ANAK AYAM\n");

Popular Posts