Write your own isascii in c programming

Joined
Nov 7, 2020
Messages
1
Reaction score
0
Hey geeks I was searching about How can I write my own isascii function in c progamming then I saw a blogpost.
There the author wrote the code snippet to check if the passed character is ascii or not.
C:
int own_isascii(int char)
{
  return((char <= 127) && (char >= 0));
}

Now iam working on to write my own string header file. After completion I will post here.
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top