C Languages Interview Questions
53. | What are Keywords? |
---|---|
|
|
54. | What is pointer in c? |
---|---|
|
|
55. | What is the difference between while and do while loops in C? |
---|---|
|
|
56. | Which functions in C can be used to append a string to another string? |
---|---|
The strcat function. It takes two parameters, the source string and the string value to be appended to the source string. | |