What is the maximum no. of arguments that can be given in a command line in C.?
1199
What is meant by operator precedence?
1202
What does c in a circle mean?
1128
What are linker error?
1150
Write program to remove duplicate in an array?
1131
What is the meaning of 2d in c?
1166
How is null defined in c?
1203
What are the advantages of c preprocessor?
1314
What is a ternary operator in c?
1176
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 )
{
}
2746
Explain what is meant by high-order and low-order bytes?
1090
What is the right way to use errno?
1115
What are the main characteristics of c language describe the structure of ac program?
1264
How do you sort filenames in a directory?
1234
Explain what does it mean when a pointer is used in an if statement?
1105