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

How can I increase the allowable number of simultaneously open files?

1 Answers   CSC,


Write a program to generate the first n terms in the series --- 9,11,20,31,...,82

1 Answers   Cognizant,


What is the meaning of typedef struct in c?

0 Answers  


What is the difference between if else and switchstatement

0 Answers  


what is the coding of display the factorial of a number using array and function?

1 Answers  






Explain how many levels deep can include files be nested?

0 Answers  


9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?

1 Answers  


What are the different categories of functions in c?

0 Answers  


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


What is p in text message?

0 Answers  


What is pass by reference in functions?

0 Answers  


Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me

2 Answers  


Categories