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
Antworten zu Vorstellungsgespräch
Anonym
12. Feb. 2018
#include
#include
void toupper(char* str)
{
int i,c;
for(i=0;i
2
Anonym
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