Thursday, 12 January 2023

List of Chapters to learn MS Word for Beginners

List of Chapters to learn MS Word for Beginners
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...

Tuesday, 12 December 2017

Operators in C Program

Operators in C Program
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

CONSTANTS in C Programming

CONSTANTS in C Programming
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...

IDENTIFIERS in C Programming

IDENTIFIERS in C Programming
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 in C Programming

KEYWORDs in C Programming
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...
Page 1 of 3123Next