Saturday, 29 August 2020

counting program.

Can we count strings using a program???
Yes. Problem solved. Try this program...

#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char s[200]="rhn";
clrscr();
printf("\n%d",strlen(s));
getch();
}


No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...