Write a code on reverse string and its complexity.
No Answer is Posted For this Question
Be the First to Post Answer
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Explain what is the concatenation operator?
What are the different properties of variable number of arguments?
How can I write a function analogous to scanf?
How can I read and write comma-delimited text?
Why is main function so important?
what are bps & baud rates? differentiate these two?
What language is lisp written in?
What is the meaning of int *x[]();?
What is static and auto variables in c?
Why should I prototype a function?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer