[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


1.how to write a program that captures a string of words and...

<< Back to: C++ FAQ (part 1 of 10)

Question by willjr
Submitted on 2/25/2004
Related FAQ: C++ FAQ (part 1 of 10)
Rating: Not yet rated Rate this question: Vote
1.how to write a program that captures a string of words and finds the number of letters in the string.
2.a program to find the square root of a given number.



Answer by Cheentu
Submitted on 4/8/2004
Rating:  Rate this answer: Vote
1 )You can solve the problem using following algorithm in c

step 1: Take your sting into an array C[30]
step 2: for i=0 to i<30
step 3: if (h[i]!=NULL)
step 4: i++;
step 5:end for
step 6: print value of i .

2) To Find square root of a given no.

   to find square root of a given no. u can use sqrt();


 

Answer by XiVoid
Submitted on 10/26/2005
Rating: Not yet rated Rate this answer: Vote
1:
  - gets(string);
  - int num = strlen(string);
  - cout << num;

2:
  - int sqr = sqrt(num);

 

Answer by Alex
Submitted on 9/22/2006
Rating: Not yet rated Rate this answer: Vote
i want details on how to write a program using the syntax and semantics.

How to this via algarhythm and sufacode

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: C++ FAQ (part 1 of 10)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.