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.

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.