String concatenation

Answers were Sorted based on User's Feedback



String concatenation ..

Answer / shrikantauti

it appends two strings. for this strcat() is used.

Is This Answer Correct ?    3 Yes 0 No

String concatenation ..

Answer / shrikantauti

strcat()
it appends two strings.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

why we are using semicolon at the end of printh statment

2 Answers   HCL,


How to print "Hi World" without using semi colon?

6 Answers   Infosys,


There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?

1 Answers  


Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A

1 Answers  


Why main is used in c?

0 Answers  






what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }

1 Answers  


What is Heap?

3 Answers  


Explain how can I open a file so that other programs can update it at the same time?

0 Answers  


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


What is the difference between the expression “++a” and “a++”?

0 Answers  


What is time null in c?

0 Answers  


Once I have used freopen, how can I get the original stdout (or stdin) back?

0 Answers  


Categories