TutorialsBazaar

← Back

Learn C Programming

Module 11/15

Strings

Module 11 of 15

Strings are arrays of characters ending with a null character '\0'. Functions like strlen(), strcpy(), and strcmp() are used to manipulate strings.

Strings characters के array होते हैं जो '\0' से समाप्त होते हैं। strlen(), strcpy() जैसे functions का उपयोग किया जाता है।

#include <stdio.h>

int main() {
    printf("Welcome to Strings");
    return 0;
}