Programming for Problem Solving -C Module 4: Strings

GlimmeringCalcium avatar
GlimmeringCalcium
·
·
Download

Start Quiz

Study Flashcards

Questions and Answers

How can a string be initialized at compile time?

  1. char s={‘M', 'a', 'n', 'g' ,’a’,’l’,’o’,’r’,’e’}; 2. char s="Mangalore";

What is the output of the program with the given example program?

string is srinivasun

How can a line of text be read in C?

By using the gets() function to read a line of string.

Why is the code 'name' used instead of '&name' with scanf()?

<p>Because name is a char array and array names decay to pointers in C.</p> Signup and view all the answers

What is the maximum number of characters that can be taken as input using fgets() in the given example?

<p>30</p> Signup and view all the answers

What is a string in C programming?

<p>A string is a collection of individual array elements or characters stored at contiguous memory locations.</p> Signup and view all the answers

How is a string terminated in C programming?

<p>A string is terminated by the null character \0.</p> Signup and view all the answers

What is the pictorial representation of the string 'c strings'?

<p>The pictorial representation of the string 'c strings' is a sequence of characters followed by the null character \0.</p> Signup and view all the answers

How are strings treated in C programming?

<p>Strings are treated as arrays of type 'char' in C programming.</p> Signup and view all the answers

What is the data type used to store an array of characters in C programming?

<p>The data type used to store an array of characters in C programming is 'char'.</p> Signup and view all the answers

More Quizzes Like This

Use Quizgecko on...
Browser
Browser