PROGRAM KASIR
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ char *barang[] = //array barang dan pointer barang { "NILA KREMES MASE", "NASI GORENG MAWT", "NASI BAKAR SKSES" }; int *harga[] ={11500,30000,21500}; int *kode[] ={1065,1066,1067}; // array kode dan pointer kode int a, b, c, d, e, f, g, zz, xx, hrg, qtys, totals, pajak, akhir; int pick[3]; int qty[3]; int total[3]; void inisiasi() //mena...