employer cover photo
employer logo
employer logo

Global Edge Software

Is this your company?

Global Edge Software interview question

Write a function to convert uppercase to lowercase and viceversa in a string. Write a function to implement strncpy using recursion Write a function to check the divisibility by 8

Interview Answers

Anonymous

12 Feb 2018

#include #include void toupper(char* str) { int i,c; for(i=0;i

2

Anonymous

12 Feb 2018

#include void divisibility(int [],int); int main() { int i,n; printf("\nEnter the number of elements: "); scanf("%d",&n); int arr[n]; printf("\nEnter the elements: "); for(i=0;i

3