BCA DCA1102 1 SEM

Sale!

200.00

Scroll down for Match your  questions with Sample

Note- Students need to make Changes before uploading for Avoid similarity issue in turnitin.

Another Option

UNIQUE ASSIGNMENT

0-20% Similarity in turnitin

Price is 700 per assignment

Unique assignment buy via WhatsApp   8755555879

Quick Checkout
Categories: , , Tag:

Description

SESSION MARCH 2023

PROGRAM BCA

SEMESTER I

COURSE CODE DCA1102 COURSE NAME Programming in C

Assignment Set –1

 

  1. Explain basic structure of C program. Write a program to calculate the area of a circle.

Ans: A basic structure in C program can be viewed as a group of building blocks called functions. A function is a subroutine that may include one or more statements designed to perform a specific task.

To write a C program we first create functions and then put them together. A C program may contain one or more sections

Its Half solved only

Buy Complete from our online store

 

https://smuassignment.in/online-store/

 

MUJ Fully solved assignment available for session March  2023.

 

Lowest price guarantee with quality.

Charges INR 200 only per assignment. For more information you can get via mail or Whats app also

Mail id is aapkieducation@gmail.com

 

Our website www.smuassignment.in

After mail, we will reply you instant or maximum

1 hour.

Otherwise you can also contact on our

whatsapp no 8791490301.

 

 

  1. Describe control statements in C. Explain various control statements in C programming language.

Ans: The decision control statements are the decision making statements that decides the order of execution of statements based on the conditions. In the decision making statements the programmer specify which conditions are to be executed or tested with the statements to be executed if the condition is true or false.

It enable you to use the

  1. Discuss the purpose of storage class in C. Explain various types of storage class in C.

Ans: The storage class in the C language for determining the visibility, lifetime, initial value, and memory location of any given variable. The storage classes define the visibility (scope) and the lifetime of any function/ variable within a C program. These classes precede the type that they are going to

Assignment Set – 2

 

  1. Define an array. Explain the declaration and initialization of one dimensional and two-dimensional array with an example.

Ans: An array is defined as an ordered set of similar data items. All the data items of an array are stored in consecutive memory locations in RAM. The elements of an array are of same data type and each item can be accessed using the same name.

An array consisting of two subscripts is

 

5 a. Define pointer. Explain the declaration and initialization of a pointer variable.

Ans: A pointer is a variable that points at, or refers to, another variable. That is, if we have a pointer variable of type “pointer to int, “it might point to the int variable i, or to any one of the locations of the int array.

Pointer: Example,

 

5 b. Write a C program to illustrate the use of indirection operator toaccess the value pointed by a pointer.

Ans: The use of an indirection operator (*) is to access the value indirectly, through a pointer.

Indirection operator (*)

The Indirection Operator (*) is a unary operator that is used to get the value referenced by a pointer variable stored at

 

6 a. Define Structure and write the general syntax for declaring andaccessing structure members.

Ans: Structure Definition: A Structure definition creates a format that may be used to declare structure variables.

For e.g.,consider a book database consisting of book name, author, number of pages and price.

 

Structbook_

 

6 b. Write a C program to show employee details using structure.

Ans: /*C program to read and print employee’s record using structure*/

 

#include <stdio.h>

/*structure declaration*/

Struct