I need help in C, I need to build a software that takes from the user (input) 3 chars and then print it as a word. For example the user enters:
A
B
C
then the software should print ABC.
I tried doing it on this method:
printf("%c %c %c",char1,char2,char3);
but the issue is that it printed it like:
A,B,C
If anyone has any idea how can I print it as a one word it would be awesome. Thanks.