Read the following data in two different files

File A: aaaaaaaadddddddd
bbbbbbbbeeeeeeee
ccccccccffffffff


File B: 11111111
22222222
33333333


By using the above files print the following output or
write it in the
Other file as follows

aaaaaaaa11111111dddddddd
bbbbbbbb22222222eeeeeeee
cccccccc33333333ffffffffffff


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

Post New Answer

More C Interview Questions

What is the acronym for ansi?

0 Answers  


How many types of linked lists what are they? How many types of data structures?

18 Answers   BSNL, Pivotal Software,


what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175

5 Answers   Wipro,


What is table lookup in c?

0 Answers  


What are void pointers in c?

0 Answers  






what r callback function?

1 Answers  


What is the difference between exit() and _exit() function?

0 Answers  


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

0 Answers  


Explain what is operator promotion?

0 Answers  


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  


With the help of using classes, write a program to add two numbers.

0 Answers   TCS,


What is the difference between constant pointer and pointer to a constant. Give examples.

4 Answers   TCS,


Categories