write a c programming using command line
argument,demonstrate set
operation(eg;union,intersection,difference)
example output is
c:>setop 12 34 45 1 union 34 42 66
c:>setop 12 34 1 42 66
c:>setop 12 34 diff 12 56 67 78
setop 12 34


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

Post New Answer

More C Interview Questions

Tell us bitwise shift operators?

0 Answers  


What is a program flowchart and explain how does it help in writing a program?

0 Answers  


What is the difference between functions getch() and getche()?

0 Answers  


What will happen when freeing memory twice

2 Answers  


write a program to sort the elements in a given array in c language

10 Answers   TCS,






What is structure of c program?

0 Answers  


Why we use stdio h in c?

0 Answers  


WAP – represent a char in binary format

4 Answers   Motorola, Wipro,


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......

0 Answers  


How do you sort filenames in a directory?

0 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


Categories