write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 42742How to reverse a string using a recursive function, without swapping or using an extra memory?
31 102536If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 11144array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
12 16969Write a function that will take in a phone number and output all possible alphabetical combinations
1001Post New Motorola C Interview Questions
What are the different components of rails ?
What is decorator in angular 2?
What is the post in wordpress?
What is an object’s lock and which object’s have locks?
What are Wait and Post Operations?
What is access group?
What are the steps involved in how to design a garment?
what are the different components in dso architecture?
Can we change the data type of a column in a hive table?
What Is A Satellite Assembly?
What is a boltzmann machine?
What is boolean false?
How do you implement forms authentication in mvc?
What is the reason for wrapping the entire content of a javascript source file in a function book?
What will this piece of css code do to an element? .container { margin: 0 auto; }