BCA SYLLABUS AND QUICK REVISION NOTES SOURCE: KHWAZA MUINUDD EEN CHISHTI AND LUCKNOW UNIVERSITY subject ; c language complete notes 1. What is c language? ans: c language is a middle level procedural programming oriented programming language developed by " DENNIS RITCHIE" at "AT&T's in Bell labourties in 1972 in USA. SYNTAX OF C LANGUAGE: It is the basic syntax of c langauge: #include<stdio.h> #include<conio.h> void main() { statement; } syntax rule for C Program C is a case sensitive language so all programms in c written in lower case letter. C statement must be end with a semicolon. Whitespace is used in C to describe blanks and tabs space is required between keywords and identifiers Keywords Keywords are preserved words that have special meaning in C language. The meaning has already been described. These meaning cannot be changed. There are total 32 keywords in C language. Identifiers In C langua...