What is right way to Initialize array?
C Program Array and strings

Quiz
•
Computers
•
University
•
Medium
Muralibhaskaran V
Used 405+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int num[6] = { 2, 4, 12, 5, 45, 5 };
int n{} = { 2, 4, 12, 5, 45, 5 };
int n{6} = { 2, 4, 12 };
int n(6) = { 2, 4, 12, 5, 45, 5 };
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
An array elements are always stored in ________ memory locations.
sequential
Random
Sequential and Random
None of the above
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
what will be printed after Execution of the following program
void main()
{
int a[5]={11,13,56,20,5};
printf("%d",a[2]);
}
garbage value
13
56
20
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
if two strings are identical then function strcmp() returns
0
-1
true
none of these
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
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;
}
Hello
world
Helloworld
none of the above
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
8.Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements?
arr[6]
arr[7]
arr{6}
arr{7}
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is a String in C Language.?
String is a new Data Type in C
String is an array of Characters with null character as the last element of array.
String is an array of Characters with null character as the first element of array
String is an array of Integers with 0 as the last element of array
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Rapid Round 2

Quiz
•
University
10 questions
CS1010 Lab 4

Quiz
•
University
15 questions
ARRAYLIST - JAVA

Quiz
•
University
10 questions
RVS_Tech_quizz_even2024-25

Quiz
•
University
10 questions
C++ vs Python: A Quiz Introduction

Quiz
•
11th Grade - University
11 questions
Array

Quiz
•
University
15 questions
Array Java

Quiz
•
University
15 questions
Java Programming

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade