employer cover photo
employer logo

Frage im Vorstellungsgespräch bei Kony

Reverse the string and write the code.

Antworten zu Vorstellungsgespräch

Anonym

8. Mai 2018

Projects description accordingly and the code itself

1

Anonym

28. Mai 2018

#include #include int main() { char arr[100]; printf("Enter a string to reverse\n"); gets(arr); strrev(arr); printf("Reverse of the string is \n%s",arr); return 0; }