Jump to content

Can anyone solve this question in C programming Language?


Recommended Posts

Hi,

 

Write code to solve the following problem. Define a function that takes a String as a parameter and returns an integer value. The function need to loop through each character in the input string to find a value of “x”. If a value of “x” is found in the string then return the position within the string where “x” is found else return -1.

 

Also, it's a pretty simple question which implies that you haven't even tried at all.

 

 

Can you use C++?

 

 

If so, you could just wrap it in an std::string object and use string's find() method.

 

 

 

If not, I'm assuming by string you mean a null terminated array of characters.  (Not important if it's not null terminated.)

 

In that case, just loop through the array looking for "x".

 

 

 

 

 

Homework's a bitch when you don't pay attention ;p.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.