
Why is array so important and used in C.
Continue reading “Why Array?”Lets' Node, I mean Code :p

Here are the Trending Programming Languages at Freelancer.
Continue reading “Trending Programming Language to get work through Freelancing”
Let’s see how show variable in printf and take input in scanf
Continue reading “Input and Output with Variable in C”
Here are five Ui/Ux Inspirational platforms on Instagram.
Continue reading “5 Ui/UX Inspirational Platforms on Instagram”
Little things make big differences, so are these terms!
Continue reading “Difference between Early Binding and Late Binding”
Here is how to define comment in C.
If you don’t know what is comment, first read my article on it.
There are two types of comments in C.
1) Single line Comments
2) Multi-line Comments
1) Single Line Comment:
We use ‘//’ double forward slash for defining single line comment in C.
As the name suggest, the compiler skips that single line after which ‘//’ are defined.
Let’s see an example:
b=a; //value of a is now in b
Here, the statement ‘value of a is now in b’ are after ‘//’ so, it will skipped by compiler.
2) Multi-Line Comment:
In C, we define Multi-line comment within ‘/*’ and ‘*/’.
For example:
a=b;
/* As we saw before b had same value as a
But now a has same value as be*/
Here, the compiler will skip the whole statement within ‘/* */’
So this was all what you need to know about Comments of C.

Let’s now see what is a comment in a Programming.
Continue reading “What are Comments in Programming?”
You must have heard about Stackoverflow, Github and google developers, but here are five developer communities that are less known, still awesome for you!
Continue reading “5 Developers Community You Don’t Know.”