Posts

Palindrome triangle

    Write a program in C to print print palindrome triangle pattern of n rows.     How to print a right triangle of palindrome strings using for loops.   Palindrome triangle pattern of 5 rows: A ABA ABCBA ABCDCBA ABCDEDCBA Required Knowledge     For Loop     If Else Statement     printf and scanf function in C  Algorithm to print triangle pattern of palindrome strings This program is similar to right triangle star pattern program.     Take the number of rows(N) of right triangle as input from user using scanf function.     Number of characters in Kth row is always 2K-1. 1st row contains 1 character, 2nd row contains 3 characters, 3rd row contains 5 characters and so on.     In any row, we will first print the characters in increasing order of their ASCII value till mid of the row and then in decreasing order.     We will use two for loops to...

Keyboard shortcuts of computer

Interesting keyboard shortcuts for Various Applications You May Not know About Computer and The Internet.ЁЯШК More than 100 keyboard shortcuts keyboard shortcuts (Microsoft Windows). ЁЯСЗ 1.CTRL + C ( copy ) 2.CTRL + X ( Cut ) 3.CTRL + V (Paste) 4.CTRL + Z (Undo) 5.DELETE (Delete) 6.SHIFT + DELETE (delete the selected item permanently without placing the item in the Recycle Bin ). 7.CTRL while dragging an item ( Copy the selected item ). 8.CTRL+ SHIFT while dragging an item (Create a shortcut to the selected item ) 9.F2 Key (Rename the selected item . 10.CTRL + RIGHT ARROW (Move the insertion point to the beginning of the next word ) 11.CTRL + LEFT ARROW (Move the insertion point to the beginning of the previous word ) 12.CTRL +DOWN ARROW (Move the insertion point to the beginning of the next paragraph ) 13.CTRL + UP  ARROW (Move the insertion point to the beginning of the previous paragraph ) 14.CTRL + SHIFT with any of the arrow keys (Highlight a block of text ) CT...