Syntax Explanation of System Software Programs
System Software
Image Source - Google | Image By - Dribble |
1) MNT -> Macro Name Table.
2) PNTAB -> Parameter Name Table.
3) MDTP -> Macro Definition Table Pointer.
4) SSTP -> Sequencing Symbol Table Pointer.
5) APT -> Actual Parameter Table.
6) PDT -> Parameter Default Table.
7) EVT -> Expansion Time Variable Table.
8) EVNTAB -> EV name are entered in EVNTAB while accessing EV declarations.
9) SSNTAB -> SS name are entered in SSTAB while accessing SS declarations.
10) MDT -> Macro Definition Table.
11) APTAB -> Actual Parameter Table
12) MNEMONIC -> To represent machine operation or opcode.
13) #PP -> Total number of positional parameters.
14) #KP -> Total number of keyword parameters.
15) #EV -> Total number of time variables.
16) strtok -> Basically, it is a part of C library and it will split null string into tokens separation.
17) fprintf -> formatted printf (you can format, how the data will be printed).
18) fclose -> it will close the defined stream.
19) lit_table -> a literal pool is a lookup table used to hold literals during assembly and execution.
20) ltorg -> assembler can collect the instruction and assemble literals into a literal pool.
21) fgets -> fgets will read a limited number of characters from a given file stream source into an array of characters.
22) isdigit -> it can be used to check if the passed character is a digit or not. It returns a non-zero value if it's a digit else it returns 0. For example, it returns a non-zero value for '0' to '9' and zero for others.
Prime Number Using TCP Protocol
No comments
Comment your views on this article