Agustus 01, 2010

c++ contoh program kata kunci typedef

contoh prgram kata kunci typedef di c++ / bahasa c
#include<stdio.h>

main(){

typedef int *a;

int c;

a b;

b = 5;

printf(" nilai b %dn",b);

b = &c;

c = 10;

printf(" nilai b %d",*b);

getch();

}


hasil run nya

read more - c++ contoh program kata kunci typedef
Powered by Blogger