What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is a program flowchart?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
write a program of palindrome(madam=madam) using pointer?
What is int main () in c?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
Is that possible to add pointers to each other?
What is the restrict keyword in C?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
WAP to accept first name,middle name & last name of a student display its initials?
program to locate string with in a string with using strstr function