Computer Science, asked by prabhjotsingh87673, 8 months ago

6. ਸਟਿੰਗ ਕੀ ਹੁੰਦਾ ਹੈ? (What is a String?)
॥​

Answers

Answered by raghavambala
4

Answer:

⋆(mrphenomenol)⋆

Explanation:

mark BRAINLIEST

Answered by amani11
49

\huge \mathbb \orange{QUESTION} \:

ਸਟਿੰਗ ਕੀ ਹੁੰਦਾ ਹੈ? (What is a String?)

\huge \mathbb \orange{ANSWER} \:

In C programming, a string is a sequence of characters terminated with a null character \0 . For example: char c[] = "c string"

ਸੀ ਪ੍ਰੋਗ੍ਰਾਮਿੰਗ ਵਿੱਚ, ਇੱਕ ਅੱਖਰ ਇੱਕ ਅੱਖਰ ਦਾ ਕ੍ਰਮ ਹੁੰਦਾ ਹੈ, ਇੱਕ ਨਲ ਅੱਖਰ \ 0 ਨਾਲ ਖਤਮ ਹੁੰਦਾ ਹੈ. ਉਦਾਹਰਣ ਦੇ ਲਈ: ਚਾਰ ਸੀ [] = "ਸੀ ਸਟਰਿੰਗ"; ਜਦੋਂ ਕੰਪਾਈਲਰ ਵਿੱਚ ਦੋਹਰੇ ਹਵਾਲਾ ਦੇ ਚਿੰਨ੍ਹ ਵਿੱਚ ਬੰਦ ਅੱਖਰਾਂ ਦਾ ਇੱਕ ਕ੍ਰਮ ਮਿਲਦਾ ਹੈ, ਇਹ ਮੂਲ ਰੂਪ ਵਿੱਚ ਅੰਤ ਵਿੱਚ ਇੱਕ ਨਲ ਅੱਖਰ \ 0 ਜੋੜਦਾ ਹੈ.

  • When the compiler encounters a sequence of characters enclosed in the double quotation marks, it appends a null character \0 at the end by default.

  • You can initialize strings in a number of ways :-
  • char c[] = "abcd";
  • char c[50] = "abcd";
  • char c[] = {'a', 'b', 'c', 'd', '\0'};
  • char c[5] = {'a', 'b', 'c', 'd', '\0'};

  • Let's take another example:
  • char c[5] = "abcde";

  • Here, we are trying to assign 6 characters (the last character is '\0') to a char array having 5 characters. This is bad and you should never do this.

❤❤❤Hope it helps you❤❤❤

Answer-By@Amani11

Similar questions
Math, 4 months ago