Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Programming Language

(Assignement-1)
Variable:
A variable is a named unit of data that is assigned a value. If the value is modified, the name does not change.
Variables are used with most programming languages and come in many forms, defined by the script or
software programmer.
Syntax declare:
The word syntax means the grammar of a programming language. We can talk about the syntax of just a small
part of a program, such as the syntax of variable declaration.
Main function:
Every C program has a primary (main) function that must be named main. It usually controls program execution
by directing the calls to other functions in the program.
Header file:
In C programming, a source code file that contains common definitions and data structures that all programmers
may use as required. Also called "include files," because the #include statement is used to incorporate them with
the program, header files use a .h extension.
Printf:
In programming languages such as C, printf is a function that sends text, variables, or another object to the
screen.
Scanf:
In the C programming language, scanf is short for scan formatted and is a control parameter used to read and
store a string of characters. The string is usually read from an input source, but may come from other sources
too.
Integer:
An integer is a positive or negative whole number. Examples of positive integers are 1, 2, 3, and 4. Examples
of negative integers are -1, -2, -3, and -4. The number 0 is also considered an integer even though it has neither
a positive or negative value.
Float:
With CSS (Cascading Style Sheets), float is a property that is used to help position elements on a web page.
Return:
In programming, return is a statement that instructs a program to leave the subroutine and go back to the return
address. The return address is located where the subroutine was called. In most programming languages,
the return statement is either return or return value, where value is a variable or other information coming
back from the subroutine.
Semicolon:
The semicolon is a punctuation mark and symbol. It resembles like a period above a comma (;). The semicolon
is used in many computer programming to finish an instruction.

Jonayed Anwar
ID: 212020514
EEE (evening 10th)

You might also like