Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of davidrl1000

davidrl1000

davidrl1000 has asked 1 questions and find answers to 2 problems.

Stats

31
EtPoint
4
Vote count
1
questions
2
answers

About

int x; 
 
int cr[10] = {80,85,82,65,32,86,73,68,65,33}; 
 
for(x=0; x <= sizeof(cr)/sizeof(int)-1; x++) { 
 
    printf("%c", cr[x]); 
 
}