There are many chapters in different books and tutorials that cover the basics and advanced features of Microsoft Word. Some of the main topics that are typically covered include:Getting started with Microsoft Word - This chapter typically covers the basics of the Word interface, including the ribbon, the quick access toolbar, and the status bar.Creating and editing documents - This chapter covers the basics of creating and editing documents in Word, including...
Thursday, 12 January 2023
Monday, 9 November 2020

Do you know how to contribute to Odia Wikisource? Here is a basic video on Odia Wikisource, its requirement, and some basic ideas on how to contribute to the Wikisource Project.Wikisource – The Free Library is a Wikimedia Foundation project to create a growing free content library of source texts, as well as translations of source texts in any language.The main aim of this project is to preserve the old books, documents, newspapers in digital format which...
Tuesday, 12 December 2017

Operators are the symbols used between two operands to perform a particular operation.
Operators are used to perform logical and mathematical operations in C Programming.
The operators join individual constants and variables to form expression.
Operators, Functions, Constants and Variables combined together to form expressions.
Let's take an example- a * b + c
Here * and + are the Operators.
'a', 'b' and 'c' are the variables and we could take...
Wednesday, 29 November 2017

C constants are like normal variables, but the only difference is their value can't be modified by the program once defined.
Constants have the fixed values.
The constants are also called as Literals.
Constants may be belonging to any of the datatypes.
There are a few types of constants;
Numeric Constant.
Non-numeric Constant.
1. Numeric Constant:
Numeric constant stands for a number.
The number can be integer, fraction etc.
Real numbers are also considered...

The elements of a program are named with a specific name called as Identifiers.
Identifiers used to identify the variables, functions, pointers and some user-defined datatypes.
Identifiers in a program are unique.
Ex: int mark;
Here mark is an identifier.
There are some rules for the Identifiers.
Rules for Identifiers:
The name of an Identifier always starts with an alphabet or underscore ( _ ).
It must not be a keyword.
There mustn't have any space...

Keywords are the predefined word by the compiler.
These are the reserve words having a fixed meaning.
Each keyword is meant to perform a specific task assigned by the compiler.
The keywords are only used to perform their task only, they can't be used as any variables.
All the keywords are written in lower case letter only since C is case sensitive.
There are 32 Keywords in C Programming.
void
auto
break
case
char
const
continue
default...