Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is meant by flushll() in c programming?

1 Answers  


What is the difference between #include and #include 'file' ?

0 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


What is null character in c?

0 Answers  


Can you please explain the difference between malloc() and calloc() function?

0 Answers  






What is the difference between formatted&unformatted i/o functions?

0 Answers  


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

0 Answers   Aspire, Infogain,


how can i sort numbers from ascending order and descending order using turbo c..

1 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


write a program that print itself even if the source file is deleted?

2 Answers  


What is the best way to comment out a section of code that contains comments?

0 Answers  


What is the benefit of using #define to declare a constant?

0 Answers  


Categories