Domanda di colloquio di Global Edge Software

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

Risposte di colloquio

Anonimo

12 feb 2018

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

2

Anonimo

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