Enumerate the main responsibilities of data link layer ?
2009
What is warning – “cannot modify header information – headers already sent”?
1077
How will you explain save() and saveorupdate() methods in hibernate?
422
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 )
{
}
2690
weather any body knows how th partiton of sections in rrb is
aote
1,genera nowlge
2,intellgince
3,maths
4,english
5,science
2461
What is the procedure of Recruting done by BPO and what is
the basic salary paid to the fresher ?
2235
How can AI improve disaster response through autonomous systems?
77
Explain what is logging in Cassandra?
83
Which method of the Component class is used to set the position and size of a component?
996
How do I uninstall windows operating system?
853
What is an ndf file?
994
WHAT IS THE PENALTY CHARGE BY THE SALES TAX DEPARTMENT IF WE
ARE ENABLE TO FILE SALES TAX RETURN AFTER ONE MONTH FROM END
OF THE IVQ-2012-13.
1969
Why Accenture?
What do you know about Accenture?
3031
Tell me what is google penalty?
233
What's the difference between python and anaconda programming?
978