Advertisement
Anik_Akash

2759

Nov 18th, 2020
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     char a,b,c;
  6.     scanf("%c %c %c",&a,&b,&c);
  7.  
  8.     printf("A = %c, B = %c, C = %c\n",a,b,c);
  9.     printf("A = %c, B = %c, C = %c\n",b,c,a);
  10.     printf("A = %c, B = %c, C = %c\n",c,a,b);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement