⟩ Write a function that finds the last instance of a character in a string
char *lastchar(char *String, char ch)
{
char *pStr = NULL;
// traverse the entire string
while( * String ++ != NULL )
{
if( *String == ch )
pStr = String;
}
return pStr;
}
char *lastchar(char *String, char ch)
{
char *pStr = NULL;
// traverse the entire string
while( * String ++ != NULL )
{
if( *String == ch )
pStr = String;
}
return pStr;
}
Suppose I want to change the way my operating system looks I am having windows XP can i change the Caption of the START menu with my name?
How is the Mainframe now?
Can you say the difference between the application working in c and .net with regard to operating system?
Can you pl list the reporting tools used in data warehouse?
Explain what is the difference between cognos reportnet 1.1 and 1.1mr1,mr2.what is the latest version cognos reportnet?
I have got Abi installed on my local comp, i know that GDE goes to co>op through the repository.i want to use the repository to chicken and checkout.any steps to connect from GDE to repository will be greatly appreciated?
When the variables are pushed into the stack, which method is used to retrieve them from it? A. pop B. pull C. remove D. none of these.
Explain what are similarities between c and c++?
What are the various cause & effect signals of the 8085 microprocessor?
Suppose if GET method is less secure than POST method then why they introduced GET method.and well use only POST method alone. Wats the need for GET here?