0% found this document useful (0 votes)
30 views

Tutorial Format Unti3

This document defines key terms related to programming in C language, including assignment operators, comments, compilation, compilers, constants, data types, escape sequences, execution, expressions, format specifiers, identifiers, keywords, logical operators, mathematical operators, operands, operators, precedence, preprocessor directives, relational operators, statements, syntax, and variables.

Uploaded by

Jennifer Gilbert
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

Tutorial Format Unti3

This document defines key terms related to programming in C language, including assignment operators, comments, compilation, compilers, constants, data types, escape sequences, execution, expressions, format specifiers, identifiers, keywords, logical operators, mathematical operators, operands, operators, precedence, preprocessor directives, relational operators, statements, syntax, and variables.

Uploaded by

Jennifer Gilbert
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

EC 201 : FUNDAMENTAL PROGAMMING

NAMA : ___________________________________

Kota Bharu Polytechnic


Department Of Electrical Engineering
NO.PEND: _______________________

SESI DIS 2012

TUTORIAL : UNIT 3

Assignment operator Operator that is used to assign a value to a variable.


______________________________________________________
______________________________________________________
Comments
Describe the entire program or specific lines of code in the program.
______________________________________________________
______________________________________________________
Compilation
The process of conversion of high-level language into machine
language.
______________________________________________________
______________________________________________________
Compilers
Programs, which convert a high-level language program into
machine level language program.
______________________________________________________
______________________________________________________
Constant
Location in the memory that stores data that never changes during
the execution of the program.
______________________________________________________
______________________________________________________
Data type
Defines the type of the value to be stored in the memory.
______________________________________________________
______________________________________________________
Escape sequences
Nonprinting characters that are used for formatting the output.
______________________________________________________
______________________________________________________
Execution
The process of running the program to get the desired output.
______________________________________________________
______________________________________________________
Expression
Any combination of operators and operands that evaluates to a
value.
______________________________________________________
______________________________________________________
Format specifier
Defines the data type of the variable to the compiler.
______________________________________________________
______________________________________________________
Identifiers
The names given to the variables.
______________________________________________________
______________________________________________________
Keywords
Reserved words for which the meaning is already defined to the
compiler.
______________________________________________________
______________________________________________________

1|Page

EC 201 : FUNDAMENTAL PROGAMMING


Kota Bharu Polytechnic
Department Of Electrical Engineering

Logical operators

Mathematical
operators

Operands

Operator

Precedence

Preprocessor
directives

Relational operators

Statement

Syntax

SESI DIS 2012

Variable

2|Page

Combines two simple statements into a compound statement.


______________________________________________________
______________________________________________________

Operator used for performing simple mathematical calculations such


as addition, subtraction, multiplication and division.
______________________________________________________
______________________________________________________
The variables on which the operators operate.
______________________________________________________
______________________________________________________
A symbol that instructs C to perform some operation, or action.
______________________________________________________
______________________________________________________
Priority given to each operator.
______________________________________________________
______________________________________________________
The instructions given to the compiler.
______________________________________________________
______________________________________________________
Operators that are used to compare two operands.
______________________________________________________
______________________________________________________
An instruction written in high-level language.
______________________________________________________
______________________________________________________
The rules to be following when writing a program.
______________________________________________________
______________________________________________________
The name given to the memory location where the data is stored,
that keeps changing during the program execution.
______________________________________________________
______________________________________________________

You might also like