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
what is meant by flushll() in c programming?
What is the difference between #include and #include 'file' ?
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); } }
What is null character in c?
Can you please explain the difference between malloc() and calloc() function?
What is the difference between formatted&unformatted i/o functions?
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?
how can i sort numbers from ascending order and descending order using turbo c..
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
write a program that print itself even if the source file is deleted?
What is the best way to comment out a section of code that contains comments?
What is the benefit of using #define to declare a constant?