Tokens in C language | What are the C Tokens ??
Tokens in C programming Language : C Tokens are smallest Individual unit of a c program. Tokens are...
Basics of C / C tutorial / Elements of C language / Uncategorized
by Venkatesh Macha · Published October 18, 2014 · Last modified August 17, 2017
Tokens in C programming Language : C Tokens are smallest Individual unit of a c program. Tokens are...
basic C programs / C codes / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published September 10, 2014 · Last modified February 27, 2017
Program : #include<stdio.h> int main(void) { int var; printf(“Size of int=%un”,sizeof(int)); printf(“Size of float=%un”,sizeof(float)); printf(“Size of var=%un”,sizeof(var)); printf(“Size...
Basics of C / C tutorial / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published August 29, 2014 · Last modified October 30, 2017
Comma ( , ) token in C : The Comma ( , ) is used as Operator and...
basic C programs / C tutorial / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published August 28, 2014 · Last modified October 23, 2017
Bitwise Operators are used for operations on Individual bits (please note that it is bits not Bytes one...
C tutorial / conditional operator / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published July 26, 2014 · Last modified February 27, 2017
Conditional Operator ( ? and : ) Conditional operator is a ternary operator. Ternary operator means it requires...
basic C programs / C tutorial / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published July 19, 2014
In Previous blog post i discussed about Relational operators. We have six relational operators. Those are < ,...
Basics of C / C tutorial / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published July 12, 2014 · Last modified November 9, 2017
Relational Operators : Relational operators used to compare values of two Expressions depending upon their Relation. If the...
C codes / C language / Elements of C language / Uncategorized
by Venkatesh Macha · Published July 8, 2014 · Last modified February 27, 2017
Program : #include<stdio.h> int main(void) { int a,b,max; printf(“Enter values for a and b...
Basics of C / C tutorial / Elements of C language / operators
by Venkatesh Macha · Published June 13, 2014 · Last modified October 22, 2017
Decrement Operator : The Decrement operator Decrements the Value of the variable by 1 (by Subtracting 1 from it’s Current Value)....
basic C programs / C codes / Elements of C language / operators / Uncategorized
by Venkatesh Macha · Published June 3, 2014 · Last modified February 27, 2017
Program : #include<stdio.h> int main(void) { int a,b ; printf(“Enter values for a and b...
Basics of C / C / C language / C tutorial
Decision making statements if and if…else in C
9 Dec, 2018
Admin / RTP / rtpengine / ubuntu / Uncategorized / VOIP
Installing RTPEngine on Ubuntu 14.04
17 Aug, 2015