Recursive Approach:The first row shall be printed and the rest of the matrix must be rotated. Note: Time Complexity remains same as iterative approach, but space complexity increases. T.C.:O(nm), S.C.:O(nm) Here's the recursive approach