What is soap protocol used for?
814
What is hibernate configuration file?
376
Can a final variable be initialized in constructor?
927
I need testPalindrome and removeSpace
#include
#define SIZE 256
/* function prototype */
/* test if the chars in the range of [left, right] of array
is a palindrome */
int testPalindrome( char array[], int left, int right );
/* remove the space in the src array and copy it over to the
"copy" array */
/* set the number of chars in the "copy" array to the
location that cnt points t */
void removeSpace(char src[], char copy[], int *cnt);
int main( void )
{
char c; /* temporarily holds keyboard input */
char string[ SIZE ]; /* original string */
char copy[ SIZE ]; /* copy of string without spaces */
int count = 0; /* length of string */
int copyCount; /* length of copy */
printf( "Enter a sentence:\n" );
/* get sentence to test from user */
while ( ( c = getchar() ) != '\n' && count < SIZE ) {
string[ count++ ] = c;
} /* end while */
string[ count ] = '\0'; /* terminate string */
/* make a copy of string without spaces */
removeSpace(string, copy, ©Count);
/* print whether or not the sentence is a palindrome */
if ( testPalindrome( copy, 0, copyCount - 1 ) ) {
printf( "\"%s\" is a palindrome\n", string );
} /* end if */
else {
printf( "\"%s\" is not a palindrome\n", string );
} /* end else */
return 0; /* indicate successful termination */
} /* end main */
void removeSpace(char src[], char copy[], int *cnt)
{
}
int testPalindrome( char array[], int left, int right )
{
}
2621
What is AWS Redshift is used for ?
5
How psychology different from sociology?
1
Is it safe to delete previous windows installation files?
760
Is python faster than c#?
756
What is Integration Broker?
1283
should pranav mukherjee has done things good, by giving
burden to vodafone a huge tax liabilty.....it will not
affect our fdi???
1980
What is the disease caused by Bartonella henselae?
611
What is the main difference between a class and an object?
958
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
975
i have cleared c.s inter. for the purpose of training i
want to know the companies who are providing training of
c.s in punjab state.please help me in this.
2284
If you want to direct people to specific pages on your website from an ad, you can create an ad that uses?
219