Arrays and Strings in C

Arrays and Strings in C

Assessment

Flashcard

Computers

12th Grade - University

Practice Problem

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

56 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Array can be considered as set of elements stored in consecutive memory locations but having __________.

Back

Same data type

2.

FLASHCARD QUESTION

Front

What is the proper declaration for an array that has 2 rows and 3 columns?

Back

type arr[2][3];

3.

FLASHCARD QUESTION

Front

How can I store the value 10 into the second row, first column of my array that I have declared as int numbers[10][10]?

Back

numbers[1][0] = 10

4.

FLASHCARD QUESTION

Front

Media Image

Back

1 2 3 4 5 0

5.

FLASHCARD QUESTION

Front

if two strings are identical then function strcmp() returns

Back

0

6.

FLASHCARD QUESTION

Front

What will be the output of the program?
#include <stdio.h>
#include<string.h>
void main()
{
char str1[20]="Hello",str2="world";
strcat(str1,str2);
puts(str1);
return 0;
}

Back

Helloworld

7.

FLASHCARD QUESTION

Front

What will be printed by the code: str1="6/4"; printf("str1");

Back

str1

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?