221 viewsMay 29, 2023C Programming#reserved words 2 Monisha M1.03K May 26, 2023 1 Comment What are reserved words with a programming language? Sandhya Answered question May 29, 2023 Monisha M commented May 26, 2023 The words that are a part of the standard C language library are called reserved words. Those reserved words have special meaning and it is not possible to use them for any activity other than its intended functionality. Example: void, return int. 4 Answers ActiveVotedNewestOldest 0 Sandhya2.52K Posted May 29, 2023 0 Comments Reserved words are words that are part of the standard C language library. Sandhya Answered question May 29, 2023 You are viewing 1 out of 4 answers, click here to view all answers. Register or Login
The words that are a part of the standard C language library are called reserved words. Those reserved words have special meaning and it is not possible to use them for any activity other than its intended functionality.
Example: void, return int.