Here in this course we will study full C-Language course which is important for the coding . For taking job in IT sectors programming is very important . And for this you should have the knowledge of any one language . And C is the basic language ,mother of all the language. So we will study C - language in this course. Our C tutorial explains each topic with programs. By learning C, you will understand basic programming concepts.
So let's start:-
What is C-Language:-
C is the basic programming language which is develop by Dennis Ritchie in 1972. It is high level programming language. It is the base of all he programming language so it is called mother language of other programming language. It is machine independent language.
C-Tokens:-
'C-Tokens ' are the basic building block of the c-Programming . All the constructs of the C- programming is formed by using these tokens. Thus we can say entire C-programming is made up of C-tokens.
There are 6- types of Tokens in C-programming.
- Identifiers
- Keywords
- Constant
- String
- Operator
- Special Symbol
Identifiers are the user define name given to the variables, array , function etc. Identifiers follow following properties:-
- Made up of lower case alphabets , upper case alphabet , digits and underscore. {a,b,.........,z} , {A,B..........,Z} and ( _ ) and {0,1,.....9}
- Must start with an alphabet or underscore . Example:- aabbb_1 and _aabbbb1 are correct but 1bbba is incorrect.
- Identifiers are case sensitive. for example ' area ' is not same as ' Area ' .
Keywords are the words in c programming that have fixed meaning and use .It can not use for defining any identifiers and it's meaning and use can not be change.
For example:- for, if, else , break, continue etc.
There are 32 keywords in the C- programming but don't need to memorized it . when we use it we will know about it.
Constant:-
Constant represent fixed value that may be a sign .
Constant
- Numeric
Recommended Post:-
- Hackerearth Problems:-
- Very Cool numbers | Hacker earth solution
- Vowel Recognition | Hackerearth practice problem solution
- Birthday party | Hacker earth solution
- Most frequent | hacker earth problem solution
- program to find symetric difference of two sets
- cost of balloons | Hacker earth problem solution
- Chacha o chacha | hacker earth problem solution
- jadu and dna | hacker earth solution
- Bricks game | hacker earth problem
- Anti-Palindrome strings | hacker earth solution
- connected components in the graph | hacker earth data structure
- odd one out || hacker earth problem solution
- Minimum addition | Hackerearth Practice problem
- The magical mountain | Hackerearth Practice problem
- The first overtake | Hackerearth Practice problem
Hackerrank Problems:-Data structure:-- Playing With Characters | Hackerrank practice problem solution
- Sum and Difference of Two Numbers | hackerrank practice problem solution
- Functions in C | hackerrank practice problem solution
- Pointers in C | hackerrank practice problem solution
- Conditional Statements in C | Hackerrank practice problem solution
- For Loop in C | hackerrank practice problem solution
- Program to find cycle in the graph
- Implementation of singly link list
- Implementation of queue by using link list
- Algorithm of quick sort
- stack by using link list
- program to find preorder post order and inorder of the binary search tree
- Minimum weight of spanning tree
- Preorder, inorder and post order traversal of the tree
0 Comments