I have function ticketVipCounter to calculate prices
int ticketVipCounter( int ticketVip ){
return ticketVip * 250000;
}
printf("Prices Is: %d", ticketVipCounter(4));
If i run the code, The result will be 1000000 How do i change the code so the result will be 1.000.000, any idea?, Thankyou