What are keywords in c with examples?
1079
How do I convert a string to all upper or lower case?
1100
c program for searching a student details among 10 student
details
2087
write a program to print data of 5 five students with
structures?
2042
if p is a string contained in a string?
1837
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
1242
how do you programme Carrier Sense Multiple Access
1965
When should we use pointers in a c program?
1127
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 )
{
}
2672
What are the primitive data types in c?
1066
Write a code to determine the total number of stops an elevator would take to serve N number of people.
1253
Does c have enums?
1093
How do we declare variables in c?
1056
An integer that indentifies the position of a data item in a sequence of data items
a) value
b) number
c) index
d) all of the above
1195
which is an algorithm for sorting in a growing Lexicographic
order
1798