Write a program to compare two strings without using the
strcmp() function
Answer Posted / kedir
1 yes
2 yes
| Is This Answer Correct ? | 29 Yes | 33 No |
Post New Answer View All Answers
What are the types of variables in c?
What is the difference between local variable and global variable in c?
Why & is used in scanf in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain what standard functions are available to manipulate strings?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
How do you print only part of a string?
Is Exception handling possible in c language?
show how link list can be used to repersent the following polynomial i) 5x+2
Using which language Test cases are added in .ptu file of RTRT unit testing???
Can the curly brackets { } be used to enclose a single line of code?
What is static function in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
#include