Day 9 : C++ Language | Strings

String A string is a data type. It represents a sequence of characters, like letters, numbers, or symbols, typically enclosed in quotation marks (e.g., "hello" or '123'). Strings are widely used to store and manipulate text in programming. Instance: string name = "Mehfila " strings are always written in double quotes. "Mehfila" is a string (data type) name is the variable in which Mehfila is stored. Previous Blogs Day1:Introduction to C++ Day2:C++ language | output Day3: C++ language | variables | Datatypes |part1 Day 4: C++ language | Variables | Datatypes | Part-2 Day 5: C++ Language | Arithmetic operators Day 6: C++ Language | Assignment operators Day 7: C++ Language | Comparison Operators Day 8 : C++ Language | Logical operators

Mar 11, 2025 - 20:07
 0
Day 9 : C++ Language | Strings

String

A string is a data type. It represents a sequence of characters, like letters, numbers, or symbols, typically enclosed in quotation marks (e.g., "hello" or '123').

Strings are widely used to store and manipulate text in programming.

Instance: 

string name = "Mehfila "

strings are always written in double quotes.

"Mehfila" is a string (data type)
 name is the variable in which Mehfila is stored.

Previous Blogs