What are the valid places to have keyword “break”?
1058
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 )
{
}
2637
write a program in c language to print your bio-data on the
screen by using functions.
6754
A character flag or control mechanism that delineates one data item from another
a) variable
b) constant
c) delimiter
d) call by reference
1064
Can one function call another?
1069
what are bit fields in c?
1626
Explain what standard functions are available to manipulate strings?
1042
Differentiate between functions getch() and getche().
1011
List a few unconditional control statement in c.
946
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work
a) compiler
b) loader
c) directive
d) preprocessor
1055
What do the functions atoi(), itoa() and gcvt() do?
1153
What are the types of operators in c?
1030
What is indirection? How many levels of pointers can you have?
1106
What are variables and it what way is it different from constants?
1207
int i=10;
printf("%d %d %d", i, i=20, i);
1573