How will you print TATA alone from TATA POWER using string copy and concate commands in C?
1331
Write a program to produce the following output:
1
2 3
4 5 6
7 8 9 10
15741
Can a pointer be null?
987
Why is event driven programming or procedural
programming, better within specific scenario?
2377
What is the acronym for ansi?
1002
What are pragmas and what are they good for?
943
What is d'n in c?
1079
What is malloc and calloc?
1014
Which is an example of a structural homology?
1266
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 )
{
}
2627
Write a program to swap two numbers without using third variable in c?
1080
Does free set pointer to null?
960
How can I recover the file name given an open stream or file descriptor?
1040
simple program of graphics and their output display
1950
What is null pointer constant?
1076