C Programming Note (NEB)
C Programming Note (NEB)
(PART – I)
- BY PRAKASH KSHETRI
It is used for developing browsers and their extensions. Google's Chromium (free and open source
web browser) is built using 'C' programming language.
It is used to develop databases. MySQL is the most popular database software which is built using
'C'.
It is used in developing an operating system. Operating systems such as Apple's OS X, Microsoft's
Windows, and Symbian are developed using 'C' language. It is used for developing desktop as well
as mobile phone's operating system.
It is used for compiler production.
Single Line Comment which starts with two front slashes i.e. //
Multiple Line Comments which are placed between the character set i.e . /* and */
Character Constants:
Single Character Constant:
A character represented within single quotes denotes a character constant.
Such as ‘a’, ‘z’, ‘4’, ‘@’, ‘$’ etc.
String Constant:
A sting constant is a character sequence enclosed within double quotes. If double quote ( “ ) or single quote ( ‘ ) are
to be part of the string then they should be preceded by back slash ( \ ).
Such as: “Republic New Nepal”, “Ravi\’s wife” , “He said \”Health is wealth\””