PayU overall Interview Questions + Coding Solutions – codewindow.in
Hot Topics PayU Solution Technical Round Question 1 Remove all the duplicate elements from string array. Answer #include <stdio.h> #include <string.h> int main() { char string_array[][10] = {"apple", "banana", "apple", "orange", "banana"}; int n = sizeof(string_array) / sizeof(string_array[0]); int i, j, k; for (i = 0; i < n; i++) { for (j = i …
PayU overall Interview Questions + Coding Solutions – codewindow.in Read More »