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 pertukaran angka. Tampilkan semua postingan
Tampilkan postingan dengan label program pertukaran angka. Tampilkan semua postingan

Senin, 05 Maret 2012

program pertukaran angka

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

void tukar_angka(int *pw,int *py)
{
int temp=*pw;
*pw=*py;
*py=temp;
}
int main(void){
int a=90,b=75;

printf("Sebelum Pertukaran Angka:\n");
printf("\nNilai 1=%d\n",a);
printf("Nilai 2=%d\n",b);
printf("\n");
tukar_angka(&a, &b);

printf("Setelah Pertukaran Angka:\n");
printf("\nNilai 1=%d\n",a);
printf("Nilai 2=%d\n",b);
printf("\n");

getch();
return 0;
}

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More