Arrays in C

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What characteristic defines an array?

  • Elements are referenced by different names.
  • Elements can be of different data types.
  • Elements are stored in a non-contiguous memory location.
  • Elements are of the same data type and are referenced by a common name. (correct)

Which of the following is the correct syntax for declaring a one-dimensional array?

  • `datatype array_name[size];` (correct)
  • `array_name datatype[size];`
  • `array_name[size] datatype;`
  • `datatype array_name(size);`

Given the declaration int arr[5];, which of the following is the correct way to initialize the array with values 1, 2, 3, 4, and 5?

  • `int arr[] = {1, 2, 3, 4, 5};`
  • `arr = {1, 2, 3, 4, 5};`
  • `arr[] = {1, 2, 3, 4, 5};`
  • `int arr[5] = {1, 2, 3, 4, 5};` (correct)

Consider the following C code snippet: int numbers[3] = {10, 20, 30}; printf("%d", numbers[3]); What will be the output of this code, and why?

<p>A garbage value or an error, because it's accessing an element out of bounds. (A)</p> Signup and view all the answers

Which of the following is a correct way to declare a two-dimensional array?

<p><code>datatype array_name[row, col];</code> (C)</p> Signup and view all the answers

Given int matrix[2][3] = {{1, 2, 3}, {4, 5, 6}};, what is the value of matrix[1][0]?

<p>4 (D)</p> Signup and view all the answers

Why is dynamic memory allocation important for arrays?

<p>It enables resizing arrays during runtime based on the program's needs. (A)</p> Signup and view all the answers

Which function is used for dynamic memory allocation in C?

<p><code>malloc()</code> (C)</p> Signup and view all the answers

What is the purpose of the free() function in C?

<p>To release dynamically allocated memory back to the system. (D)</p> Signup and view all the answers

What is a pointer?

<p>A variable that stores the memory address of another variable. (B)</p> Signup and view all the answers

Which of the following advantages is associated with using pointers in programming?

<p>Pointers allow for variables to be swapped without physically moving them in memory. (A)</p> Signup and view all the answers

What is the correct syntax for declaring a pointer variable in C?

<p><code>datatype *pointer_name;</code> (C)</p> Signup and view all the answers

Given int num = 10; and int *ptr = &num;, what is the meaning of *ptr?

<p>The value stored in <code>num</code>. (A)</p> Signup and view all the answers

In pointer arithmetic, if ptr is a pointer to an integer and its current value is 1000, what will be its value after ptr++;?

<p>1004 (D)</p> Signup and view all the answers

Which of the following arithmetic operations is NOT allowed on pointers?

<p>Multiplication by a floating-point number. (D)</p> Signup and view all the answers

What is the purpose of a function?

<p>To organize code into reusable blocks that perform specific tasks. (B)</p> Signup and view all the answers

Which of the following is an example of a pre-defined function?

<p><code>sqrt()</code> (D)</p> Signup and view all the answers

What distinguishes a user-defined function from a pre-defined function?

<p>User-defined functions can be modified by the user, while pre-defined functions cannot. (A)</p> Signup and view all the answers

Which of the following is NOT an advantage of using user-defined functions?

<p>Automatic increase in program execution speed. (B)</p> Signup and view all the answers

Which of the following elements is essential in a user-defined function?

<p>Function declaration, definition, and call. (B)</p> Signup and view all the answers

What is the general syntax of a function in C?

<p><code>datatype function_name (parameters list) { body }</code> (B)</p> Signup and view all the answers

What happens when a function is called in a program?

<p>The control is transferred to the called function, and the calling function is temporarily stopped. (C)</p> Signup and view all the answers

In the context of functions, what is an 'actual parameter'?

<p>A parameter passed from the calling function to the called function. (D)</p> Signup and view all the answers

What is the purpose of the return statement in a function?

<p>To send a value from the called function back to the calling function. (B)</p> Signup and view all the answers

Which function prototype describes a function with no arguments and no return values?

<p><code>void func();</code> (B)</p> Signup and view all the answers

What type of data communication occurs in a function with arguments and no return values?

<p>One-way data communication from calling function to called function (B)</p> Signup and view all the answers

In a function with arguments and a return value, what type of data communication takes place?

<p>Two-way data communication (C)</p> Signup and view all the answers

Which function prototype describes a function with no arguments but with a return value?

<p><code>int func();</code> (D)</p> Signup and view all the answers

What is 'call by value' regarding function parameter passing?

<p>Passing a copy of the variable's value to the function. (A)</p> Signup and view all the answers

What is the primary effect of using 'call by value' in a function?

<p>Changes to the formal argument do not affect the actual argument. (C)</p> Signup and view all the answers

In 'call by reference', what is passed to the function?

<p>The address of the variable. (C)</p> Signup and view all the answers

What is the key outcome of using 'call by reference'?

<p>Changes to the formal argument affect the actual argument. (D)</p> Signup and view all the answers

What is recursion?

<p>A process where a function calls itself. (D)</p> Signup and view all the answers

Under what condition does a recursive function stop calling itself?

<p>When a specific condition is satisfied. (D)</p> Signup and view all the answers

What is the main characteristic of a library function?

<p>It is a pre-defined function. (C)</p> Signup and view all the answers

Which of the following is a library function used for finding the square root of a number?

<p><code>sqrt()</code> (C)</p> Signup and view all the answers

Which library function is used to find the absolute value of a number?

<p><code>abs()</code> (C)</p> Signup and view all the answers

What is the purpose of the ceil() library function?

<p>To find the smallest integer greater than or equal to a number (D)</p> Signup and view all the answers

Flashcards

What is an Array?

A collection of elements of the same data type, referenced by a common name.

What is a One-Dimensional Array?

An array with elements accessed using a single index.

What is a Two-Dimensional Array?

An array where each element is accessed using two indexes (row and column).

What is Array Initialization?

Arrays can have values assigned at the time of declaration.

Signup and view all the flashcards

What is a Pointer?

A variable that stores the memory address of another variable.

Signup and view all the flashcards

What are the Advantages of Pointers?

Enables dynamic memory allocation/reallocation and swapping variables, reduces program length and complexity.

Signup and view all the flashcards

What is a Function?

A sub-program containing one or more statements, performing a specific task when called.

Signup and view all the flashcards

What are Pre-Defined Functions?

Built-in functions available in libraries; user can use but not modify them.

Signup and view all the flashcards

What are User-Defined Functions?

Functions defined by the user, which can be modified as needed.

Signup and view all the flashcards

What are the elements of User Defined Functions?

Function declaration, function definition, and function call.

Signup and view all the flashcards

What is an actual parameter?

The actual parameters are sent from the calling function.

Signup and view all the flashcards

What is a formal parameter?

Where the parameters are which is used in the called function.

Signup and view all the flashcards

What is a Return Statement?

May or may not send a value to the calling function.

Signup and view all the flashcards

What is a function with no arguments and no return values.

Transfer of data take place between the calling function and the called function (act independently).

Signup and view all the flashcards

What is a function with arguments and no return values?

One way data communication between fuctions.

Signup and view all the flashcards

What is a function with arguments and return values.

Two way communication between functions.

Signup and view all the flashcards

What is function with no arguments and with return values?

One way data communication in functions.

Signup and view all the flashcards

What is Call by Value?

Actual argument passed to the formal argument.

Signup and view all the flashcards

What is Call by Reference

Call parameter passing by passing address in function calls.

Signup and view all the flashcards

What is Recursion?

Calling the same function itself again and again until some condition is satisfied.

Signup and view all the flashcards

What is a Library Function.

It is predefined function for mathematical and String functions.

Signup and view all the flashcards

Study Notes

Arrays

  • An array is a collection of elements of the same data type, referenced by a common name.
  • Arrays can be one-dimensional, two-dimensional, or multi-dimensional.

One-Dimensional Arrays

  • The syntax for declaring a one-dimensional array is datatype array_name[size];.
  • For example, int x[3]; declares an integer array named x with a size of 3.

Array Initialization

  • The syntax for initializing an array is data_type array_name[size]={variables};.
  • For example, int x[3]={5,3,7}; initializes an integer array x with the values 5, 3, and 7.
  • In the declaration int x[3] the element at index 0 is set to 5, index 1 is 3 and index 2 is 7.
  • char a[4]="Jain"; initializes a character array a with the string "Jain".

Program example to set values of array and display it

  • Program that sets values for a[0] through a[4] to 10, 20, 30, 40, and 50, respectively.
  • The program then iterates through the array and prints each value.
  • The output displays the value at each index of the array: a[0] is 10, a[1] is 20, a[2] is 30, a[3] is 40, and a[4] is 50.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

One-Dimensional Arrays in Programming
8 questions
C Programming Module 7: Arrays
48 questions
Java: Working with Multi-Dimensional Arrays
15 questions
Use Quizgecko on...
Browser
Browser