What is string concatenation in c?


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

Post New Answer

More C Interview Questions

int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


Why the use of alloca() is discouraged?

2 Answers   Oracle,


What is the meaning of 2d in c?

0 Answers  


What functions are in conio h?

0 Answers  


void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case

9 Answers   Accenture, TCS,






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

0 Answers  


Why do we use int main instead of void main in c?

0 Answers  


Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  


Why do we use stdio h and conio h?

0 Answers  


What are the different types of endless loops?

0 Answers  


Explain Linker and Loader

5 Answers  


Explain how can type-insensitive macros be created?

0 Answers  


Categories