Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Cara 4 : The array can also be initialized with values that are not known beforehand.

1. Codenya :

#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop
*/

int main(int argc, char** argv) {

int nilai['a'];

int a, i;

printf ("masukan jumlah nilai :");

scanf ("%d",&a);

return 0;

You might also like