Write a program to fill the screen alternately with heart and diamond the ASCII code for heart and diamond are 3 and 4 respectively. #include #include void main(void) { int a=1; while(a<2001) { printf("\x3\x4"); a++; } getch(); }
According to Gist: "When a social interaction involves a transmission of feelings by the usage of the symbols it is known as communication". Social Interaction: Any kind of interaction in a society among any one it is called social interaction. The Process of Communication: (Message encoder)Source <-----------------Channel------------------> Receiver(Message decoder) | ...
Comments
Post a Comment