What is the difference between Char a[ ]=”string” and char
*a=”String”
Answers were Sorted based on User's Feedback
Answer / nisha
a[0] that is 's' is upper in last and in other its lower .
Is This Answer Correct ? | 0 Yes | 6 No |
How would you implement a substr() function that extracts a sub string from a given string?
Differentiate between a deep copy and a shallow copy?
explain the reference variable in c++?
Write a function to find the nth item from the end of a linked list in a single pass.
Can we declare destructor as static? Explain?
What are the difference between reference variables and pointers in C++?
When a function is made inline. Write the situation where inline functions may not work.
Implement strcmp
Explain the difference between new() and malloc() in c++?
What is class syntax c++?
What is the topic of the C++ FAQ list?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?