Mini Project or Internship

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 20

MINI PROJECT OR INTERNSHIP ASSESSMENT

(KCS354)
Session: 2021- 2022

Name of Student: Avneesh Agrahari


University Roll Number:
2000540100053
Section: CS-21
Presented to: Anjali Awasthi Ma’am
Topic of Internship

Beginning of c++

Programming

2
Introduction to C++..??
C++ is one of the
most popular
programming
languages with
application domains
including systems
software, application
drivers, device
drivers, embedded
software, high-
performance server
and client
applications
4
Week wise progress

WEEK 1- WEEK 2-
Variables And Functions
Data Types

WEEK 4-
WEEK 3- Class And
Arrays And Structure
String Pointers
WEEK 1-:
VariablesAnd
Data types
WEEK 2-:
Functions
A function in C++ is a group
of statements that
together perform a specific
task. Every C/C++ program
has at least one function
that the name is main. The
main function is called by
the operating system by
which our code is
executed. A return_type is
the data type of the value
the function returns.
WEEK 3-:
Arrays And String

ARRAY
An array is a
collection of
elements of the same
type placed in
contiguous memory
locations that can be
individually
referenced by using
an index to a unique
identifier. 
STRING
A string is any series of characters that are
interpreted literally by a script. For
example, "hello world" and "LKJH019283"
are both examples of strings
WEEK 4-:
Class,Structure
And Pointers
STRUCTURE
CLASS
Structure is a
It is a user-defined
collection of
data type, which
variables of
holds its own data
different data types
members and
under a single
member functions,
name. It is similar
which can be
to a class in that,
accessed and used
both holds a
by creating an
collecion of data of
instance of that
different data
class.
types. 
Pointer

In C++, a pointer refers to a variable


that holds the address of another
variable. Like regular variables,
pointers have a data type. For
example, a pointer of type integer
can hold the address of a variable
of type integer. A pointer of
character type can hold the address
of a variable of character type

You might also like