#include <stdio.h>
#include <conio.h>
#include <ctype.h>
void main()
{
char a[10];
int flag, i = 1;
clrscr();
printf("\n Enter an identifier:");
gets(a);
if (isalpha(a[0]))
flag = 1;
else
printf("\n Not a valid identifier");
while (a[i] != '\0')
{
if (!isdigit(a[i]) && !isalpha(a[i]))
{
flag = 0;
break;
}
i++;
}
if (flag == 1)
printf("\n Valid identifier");
getch();
}
-
Notifications
You must be signed in to change notification settings - Fork 0
imparthgalani/Demo
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
C Program
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published