String and String Functions in C language

In C programming, a string is a sequence of characters presented in double quote " " and terminated with a null character \0 . string is stored in 1D character aray its size is greater than length of string.
 
सी प्रोग्रामिंग में एक स्ट्रींग चरक्टेर्स का समूह होती है जिन्हें डबल क्वोट " " में दर्शाया जाता है एवं नल करैक्टर '\0' से समाप्त किया जाता है। स्ट्रींग को करैक्टर अरे में रखा जाता है इसका आकार स्ट्रींग की लम्बाई से 1 अधिक होता है।  

Example:- 
char name[6] = "india";

Before using string functions we need to include string.h header file in C program. Some important string related functions are as follows:-
स्ट्रींग फंक्शन को प्रयुक्त करने से पूर्व सी प्रोग्राम में string.h हैडर फाइल को जोड़ा जाता है कुछ महत्वपूर्ण स्ट्रींग फंक्शन निम्न है :-


No comments:

Post a Comment