0
What are the uses of different keywords in c?
I came to know that there are 32 keywords in c. I don't their specific use. Can anyone explain their usage in different cases?
2 Respostas
+ 1
Keywords build the scaffold of your program. Think of them as this: if it is not a function and not a variable, but part of your logic, it is likely to be a keyword. One could also refer to them as 'built in' functions of the language.
Happy coding.