Wednesday 29 November 2017

KEYWORDs in C Programming

  • Keywords are the predefined word by the compiler.
  • These are the reserve words having a fixed meaning.
  • Each keyword is meant to perform a specific task assigned by the compiler. 
  • The keywords are only used to perform their task only, they can't be used as any variables. 
  • All the keywords are written in lower case letter only since C is case sensitive.
  • There are 32 Keywords in C Programming.

  1. void
  2. auto
  3. break
  4. case
  5. char
  6. const
  7. continue
  8. default
  9. do
  10. double
  11. else
  12. enum
  13. extern
  14. float
  15. for
  16. goto
  17. if
  18. int
  19. long
  20. register
  21. return
  22. short
  23. signed
  24. sizeof
  25. static
  26. struct
  27. switch
  28. typedef
  29. union
  30. unsigned
  31. volatile
  32. while



No comments:

Post a Comment