Concatenation char and int
- by soad el-hayek
i've an error here , and couldn't solve it :
String generate_card (String Fname , String Lname ,int card_id ){
String cardId = null ;
cardId = Fname.charAt(0) + Fname.charAt(0) + card_id++ ;
return cardId;
}