This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tampilkan postingan dengan label program inisialisasi indeks array dan nilai array. Tampilkan semua postingan
Tampilkan postingan dengan label program inisialisasi indeks array dan nilai array. Tampilkan semua postingan

Senin, 05 Maret 2012

program inisialisasi indeks array dan nilai array

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

int main(){
      int i;
      int list_int[10];
      for (i=0;i<10;i++){
          list_int[i]=i+1;
       printf("list_int[%d] diinisialisasi dengan %d.\n",i,list_int[i]);
       }
       printf("Masukan indeks array :    \n"); scanf("%d",&i);
       printf("masukan Nilai array  :    \n"); scanf("%d",&list_int[i]);
       printf("hasil \n");
       for (i=0;i<10;i++){
       printf("list_int[%d] diinisialisasi dengan %d.\n",i,list_int[i]);
       }
system("pause");
}

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More