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


    Search the Q&A Archives


...write programs by using user defined string functions...

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)

Question by geetu
Submitted on 1/11/2004
Related FAQ: comp.lang.c Answers to Frequently Asked Questions (FAQ List)
Rating: Not yet rated Rate this question: Vote
how to write programs by using user defined string functions


Answer by harish
Submitted on 4/7/2004
Rating:  Rate this answer: Vote
u have to write your own functions.
eg i will write a function which will give  string length if u pass the string

# include <stdio.h>
int strlen (char*);
int main (void)
{
char str [80];
int count;

fgets (str, 79, stdin);
count = strlen (str);
printf ("String length is %d",count);
}

int strlen (char *str)
{
int count = 0;
while (*str++)
  count++;

return count;
}

 

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: comp.lang.c Answers to Frequently Asked Questions (FAQ List)


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

© 2008 FAQS.ORG. All rights reserved.