Fundamental of Programming Language
Fundamental of Programming Language
Data
Data is represented with the help of characters such as alphabets (A-Z, a-z), digits
(0-9) or special characters (+,-,/,*,<,>,= etc.)
Information
Information is organized or classified data, which has some meaningful values for
the receiver. Information is the processed data on which decisions and actions are
based.
Data processing
ANSI-C
ANSI C, short for American National Standards Institute C, refers to the
standardized version of the C programming language established by the
American National Standards Institute. ANSI C incorporates standardized
features and syntax rules to ensure portability and compatibility across
different systems and compilers. It defines a set of rules and guidelines for
writing C code, including standard libraries, data types, syntax conventions,
and function prototypes. ANSI C has become the de facto standard for C
programming, providing a common foundation for C developers and ensuring
consistency and interoperability in C code across various platforms and
environments.
In ANSI C, there are a total of 32 keywords. These keywords have predefined
meanings and cannot be used as identifiers (such as variable names or
function names) in a C program. Here is the list of keywords in ANSI C:
1. auto
2. break
3. case
4. char
5. const
6. continue
7. default
8. do
9. double
10.else
11.enum
12.extern
13.float
14.for
15.goto
16.if
17.int
18.long
19.register
20.return
21.short
22.signed
23.sizeof
24.static
25.struct
26.switch
27.typedef
28.union
29.unsigned
30.void
31.volatile
32.while