Monday, March 4, 2019

Structure of C++ Program

First program is C++

// This is my first program is C++
/* this program will illustrate different components of
a simple program in C++ */

#include <iostream>
using namespace std;
int main()
   {
          cout << "Hello World!";
          return 0;
    }

When the above program is compiled, linked and executed, the following output is displayed on the VDU screen.

Hello World!

Various components of this program are discussed below:

Comments

First three lines of the above program are comments and are ignored by the compiler. Comments are included in a program to make it more readable. If a comment is short and can be accommodated in a single line, then it is started with double slash sequence in the first line of the program. However, if there are multiple lines in a comment, it is enclosed between the two symbols /* and */

#include <iostream>

The line in the above program that start with # symbol are called directives and are instructions to the compiler. The word include with '#' tells the compiler to include the file iostream into the file of the above program. File iostream is a header file needed for input/ output requirements of the program. Therefore, this file has been included at the top of the program. using namespace std; All the elements of the standard C++ library are declared within std. This line is very frequent in C++ programs that use the standard library. 

int main ( )

The word main is a function name. The brackets ( ) with main tells that main ( ) is a function. The word int before main ( ) indicates that integer value is being returned by the function main (). When program is loaded in the memory, the control is handed over to function main ( ) and it is the first function to be executed.

Curly bracket and body of the function main ( )

A C++ program starts with function called main(). The body of the function is enclosed between curly braces. The program statements are written within the brackets. Each statement must end by a semicolon, without which an error message in generated.

cout<<"Hello World!";

This statement prints our "Hello World!" message on the screen. cout understands that anything sent to it via the << operator should be printed on the screen.

return 0;

This is a new type of statement, called a return statement. When a program finishes running, it sends a value to the operating system. This particular return statement returns the value of 0 to the operating system, which means “everything went okay!”.

Printing Multiple Lines of Text with a Single Statement

/* This program illustrates how to print multiple lines of text
with a single statement */

#include <iostream>
using namespace std;
int main()
      {
           cout << "Welcome\nto\nC++";
           return 0;
       }
Output:

Welcome to C++

The characters print exactly as they appear between the double quotes. However, if we type \n, the characters \n are not printed on the screen. The backslash (\) is called an escape character. It indicates that a "special" character is to be output. When a backslash is encountered in a string of characters, the next character is combined with the backslash to form an escape sequence. The escape sequence \n means newline. It causes the cursor to move to the beginning of the next line on the screen.

The following table gives a listing of common escape sequences.

Escape Sequence 
Description

     \n
Newline
     \t
Horizontal tab
     \a
Bell (beep)
     \\
Backslash
     \'
Single quote
     \''
Double quote

Sunday, March 3, 2019

C++ Compiler


Getting Started

          A computer cannot understand our language that we use in our day to day conversations, and likewise, we cannot understand the binary language that the computer uses to do it’s tasks. It is therefore necessary for us to write instructions in some specially defined language like C++ which is like natural language and after converting with the help of compiler the computer can understand it.

C++ Compiler

         A C++ compiler is itself a computer program which’s only job is to convert the C++ program from our form to a form the computer can read and execute. The original C++ program is called the “source code”, and the resulting compiled code produced by the compiler is usually called an “object file”.

          Before compilation the preprocessor performs preliminary operations on C++ source files. Preprocessed form of the source code is sent to compiler.

          After compilation stage object files are combined with predefined libraries by a linker, sometimes called a binder, to produce the final complete file that can be executed by the computer. A library is a collection of pre-compiled “object code” that provides operations that are done repeatedly by many computer programs.

c++ program diagram

Integrated Development Environment


          Above Figure illustrates the process of translating a C++ source file into an executable file. You can perform entire process of invoking the preprocessor, compiler, and linker with a single action by using Integrated Development environment. These environments consist of a text editor, compiler, debugger, and other utilities integrated into a package with a single set of menus. Preprocessing, compiling, linking, and even executing a program is done by selecting a single item from a menu.

Following Figure shows a screen from the Microsoft Visual C++ IDE.


visual c++ express

Read Creating and running a program using Microsoft Visual C++ Express Edition

The best way to start learning a programming language is by writing a program. In next blog, we'll discuss a program that displays message on monitor.




Saturday, March 2, 2019

Index of C++ Tutorial

C++ Tutorial

This tutorial is for school students who want to learn to program and don't have any knowledge about the programming.
In this course you will learn: semantics of the cpp, what is compiler / IDE, variables, input / output streams, operators conditions like if / else / switch , arrays / multi-dimensional arrays loops - for / while / do-while, functions, pointers,object oriented programming

INDEX

Unit 01. Basics of C++
Unit 02. Flow of Control
  • Conditional Structure
  • Looping Structure
Unit 03. Functions
  • Library Functions
  • User Defined Functions

Unit 04. Compound Data Types
  • Array - Single Dimension
  • Array - Multi Dimension
  • String - Character Array
  • Structures and other Data type
  • Pointers

Unit 05. Object Oriented Programming
  • OOP Concepts
  • Introducing Classes
  • Constructor and Destructor
  • Case Study : Time Class
  • Separate Header and Implementation Files
  • Static Members
  • Friend Functions and Friend Classes
  • Operator Overloading
  • Inheritance - I
  • Inheritance - II
  • Polymorphism and Virtual Function                

Unit 06. File Handling
  • File Handling Basics
  • Text File and Binary File

Tuesday, April 10, 2018

आई.एम्.सी का जीवन शक्ति रस (एनर्जी ड्रिंक) यह कृत्रिम स्वाद एवं सुगंध रहित बहुत ही स्वादिष्ट एलोवेरा, केसर, इलायची, केवड़ा, नागरमोथा, चांदी के वर्क, गिलोए, पुनर्वा के गुणों से युक्त एनर्जी ड्रिंक।

आई.एम्.सी का जीवन शक्ति रस (एनर्जी ड्रिंक)

यह कृत्रिम  स्वाद एवं सुगंध रहित बहुत ही स्वादिष्ट एलोवेरा, केसर, इलायची, केवड़ा, नागरमोथा, चांदी के वर्क, गिलोए, पुनर्वा के गुणों से युक्त एनर्जी ड्रिंक।

jivan shakti ras
एलोवेरा       : Aloe Vera
केसर           : Kesar
इलायची      : Elaichi
अर्क केवड़ा   : Ark Kewda
अर्क गुलाब   : Ark Gulab
चांदी वर्क      : Chandi Vark
नागरमोथा    : Nagarmotha
गिलोय         : Giloy
पुनर्वा           : Punarnava
सर्करा           : Sarkara.
 केसर :
शक्ति का भंडार, सर्वोत्तम सेक्स टॉनिक, रक्तवर्धक, दिमाग को ताकत देता है, सुंदरता को निखरता है।  दिल और जिगर को बल प्रदान करता हैशरीर के प्रत्येक अनु में तुरंत शक्ति का संचार करता है

छोटी इलायची :
दिल और दिमार को ताकत देती है शरीर में जलन नहीं होने देती। पेट गैस, अरुचि और दुर्गन्ध को दूर करती है पेशाब में जलन और रूकावट को दूर करती है चित्त को प्रसन्न रखती है बढ़िया किसक की सेक्स टॉनिक है

अर्क  केवड़ा : 
सौंदर्यवर्धक है। मन को ठीक प्रसन्न रखता हैदिल और दिमार को ताकत देती है। खून बढ़ता है। पीड़ाशामक है, गर्भपोषक है, बढ़िया किस्म का सेक्स टॉनिक है

अर्क गुलाब :
दिल की धड़कन को थिक रखता है, दिल घटने को तुरंत रोकता है, दिल और दिमार को ताकत देती है। हाज़मे को दरुस्त रखता है,
मन को ठीक प्रसन्न रखता है। बुद्धि को बढ़ाता है, जिगर को ठीक रखता है, गर्मी को रोकता है। अधिक पसीने हानि आने देता है, आँतों को बल दता है, पेट गैस को लिए बहुत लाभदायक है एवं रक्त निर्माण में सहयोग करता है

नागरमोथा :
नर्वस सिस्टम को बल प्रदान करता है, भूक बढ़ाता है, हाज़मा दरुस्त करता है, दिमाग को तेज़ करता है, खांसी एवं दमा को काबू में रखता है, बल बढ़ाता है, शरीर को कमज़ोर नहीं होने देता एवं रक्त निर्माण में सहयोग करता है

चांदी के वर्क :
चांदी सर्वोत्तम नर्व टॉनिक है, दिल और दिमार को ताकत देती है, नस, नाड़ियाँ एवं सिर में दर्द नहीं होने देती, गर्मी को काबू में रखती है, तन और मन को शक्ति देती है एवं सातिवक सेक्स टॉनिक है

गिलोए :
शरीर की रोग प्रतिरोधक क्षमता को बढ़ाता है, लिवर को बक देती है, गठिया में उपयोगी है, मधुमेह, उदर विकार, अम्लपित्त, पीलिया, ज्वर, मूत्र विकार आदि में उपयोगी है एवं यह प्लेटलेट्स की संकिया को बढ़ाता है

पुनर्वा :
यह मूत्र विकार, लिवर विकार, ह्रदय विकार, दुर्बलता आदि अनेक विकारो में उपयोगी है। पलिया, पाण्डु, कला पलिया, आदि अनेक रोगो के लिए उपयोगी है

जीवन शक्ति रस के लाभ :-
इसको पिने से एनर्जी मिलती है, याद्दाश्त बढ़ती है एवं शरीर बलवान होता है, रिग प्रतिरोधक प्रणाली, मानसिक सतर्कता बढ़ती है, शक्तिवर्धक और बुद्धिवर्धक है, दिल और दिमाग और जिगर को बल प्रदान करता है। पेशाब में जलन और रूकावट को दूर करता है, खून को बढ़ाता है,  धड़कन को ठीक रखता है, दिल घटने को तरुंत कोकता है, पेट गैस के लिया बहुत लाभदायक है एवं पीलिया, पाण्डु जैसी बीमारीयों को दूर करती है

उपोग :
२० म.ल. जीवन शक्ति रस को २०० म.ल. पानी, दूध, या लस्सी में मिलकर पीना चाहिए। इसे आप दाही, खीर, फिरनी एवं फालूदा इन में भी मिलाकर इस्तेमाल कर सकते है

 

Wednesday, April 4, 2018

Bal shakti is a good tonic for children, its make your child strong physically and mentally (बाल शक्ति सिरप बच्चो के लिए वरदान)

बाल शक्ति सिरप 

बच्चो के लिए वरदान 

imc ki balshakti
Contain Extract of the Followings
  • ब्राह्मी       = Brahmi
  • शंकपुष्पी   = Sankhpushpi
  • अश्वगंधा  = Ashwaghandha
  • शतावरी    = Shatawar
स्वास्थ्यवर्धक लाभ:-
  • रोग-प्रतिरोधक क्षमता को बढ़ाता है. 
  • स्मृति और मस्तिष्क के लिए प्रभावी है. 
  • बच्चो के विकास की लिए विशेष लाभदायक है. 
  • वज़न को बढ़ाता है. 
  • पाचन प्रणाली में सुधार लाता है. 

उपयोग:-
  • १ साल और उससे ऊपर २ से ३ मि.ली. 
  • साल और उससे ऊपर ५ मि.ली. 
  • ६ साल और उससे ऊपर १० मि.ली.
  • १० साल और उससे ऊपर २० मि.ली. 

Microsoft Office Excel 2007 Step by Step Tutorial in PDF file with Direct Download link

Learn Microsoft Excel 2007 Step By Step 

Direct Download Tutorial PDF Files in One Single Click.


Microsoft Excel 2007
Short Notes About Microsof Excel 2007
 
Microsoft Excel is a spreadsheet application program offered in the Microsoft office software package. This program allows you to perform calculations and use graphics tools, pivot tables and a macro programming language called VBA. In addition, Excel can also be used to create charts and graphs.


COLUMN
 The vertical lines in a sheet are known as a column. There is a total column in a sheet is 16384. The default width of a column is 8.43 point.

ROW

The horizontal lines in a sheet are known as a row. There are total 148576 rows in a column. The height of a row by default is 15 point.


WORKSHEET
The sheet in a workbook from in combination with rows and columns to perform differently. Arithmetical and logical calculations are known as worksheet as it is electronic while opening excel 3 worksheet open by default.

Workbook.
While opening MS excel the application screen that appears with some tools and 3 sheets by default to perform different calculations. CELL
intersaction of row and column is called the cell. 

Cell = Column*Row

Grid Lines.
The line which separate rows and columns are called grid lines. It is a nonprintable area by default.

GOAL SEEK.
Goal seek is an option through which we can obtain any target value by changing other data.

Sub Total.
subtotal is an option through which we can sort out the value depending on the condition.

AUTO FILL 
Autofill is an option which helps the user to automatically fill the above data underneath.

FILTER 
Filter is an option through which we can sort out the value depending on criteria given by the user.

RIBBON 
he ribbon, a panel that houses the command buttons and icons, organizes commands as a set of tabs, each grouping relevant commands. Each application has a different set of tabs which expose the functionality that application offers.

AUTOSUM 
The autosum button allows you to quickly insert the sum function.It is located in two places on the ribbon. On the right end of the "HOME" tab in the editing section, and on the far left of the "FORMULA" tab. Select the cell where you want to put the total and then click on the autosum button. Excel will insert the sum function and take a guess as to what cell range you'd like to sum by listing the first and last cell in the sum, separated by a colon.Check to make sure the cell range is correct, then press enter to accept the function.

AUTO CALCULATE 
Excel will automatically perform the calculation on a set of cells that you select and display the results on the status bar in the bottom right of your window. The default calculation is the sum function, but you can change the calculation by right-clicking or control+clicking(MAC) on the auto calculate the result.

PIVOT TABLE 
A pivot table is a great reporting tool that sorts and sums independently of the original data layout in the spreadsheet. It is an interactive representation of a data table. One can rearrange the data and choose what to display and what to hide.The best way to find out what a pivot table can do is to create one.

CHARTS
A full discussion of excel"s many charting options is beyond the scope of this handout. However, it is fairly straightforward to create a simple chart using the chart wizard. Just highlight the data you wish to base your chart on and click on the Insert tab and you will see the available charts there. When you click on a type of chart, you will be prompted to select a subtype of the chart. Once you have done so, the chart will appear on your spreadsheet. Three additional tabs will also appear on your ribbon, through which you can alter your chart by adding titles, changing data points and many other options.

NAME MANAGER 
You can use name manager to name a group of cells, and therefore only type one name when you want to perform a calculation with that group. This can be useful when you are performing many different calculations on the same set of numbers, especially when you want to perform these calculations across multiple sheets. To do this, select the cells you would like to name and name them in the "name box" next to the formula bar. You can then perform any function on these cells by just typing the name you gave the cells instead of referencing the cell numbers. You can edit the names you gave the cells and change which cells they refer to by clicking on "name manager" on the "formula" tab.

FUNCTIONS 
excel has created hundreds of functions that
prevent you from having to write out complex or repetitive formula yourself. Functions can be inserted by clicking on the function symbol to the left of the formula bar. Functions can also be inserted by clicking on the "insert function" button on the "formula" tab or jumping to any of the subcategories of functions on that tab. Yet another way to insert a function is to type the equals sign into a cell and begin to type the name of formula. A drop-down menu will appear, from which you can select the formula.

FORMULAS 
Select the cell that the formula result is going to be displayed in. The formula can be constructed in the formula bar or typed directly into the cell in which you want the formula to begin. You must always put the = sign before a formula, as this is how excel recognizes what you are entering into a formula. Autofill helps you fill in formula quickly once you have constructed one in a cell. In order to autofill, select the cell with the formula.

Cell References
there are two different types of cell references

relative cell references
Cell references that change when the formula is autofilled into different cells.

absolute cell references
 If you don't want a certain part of your cell reference to change when you copy the formula to a new cell, you need to put a $ in front of the row and /or column part of the reference.



Microsoft Office Access 2007 step by step Tutorial
For Downloading the files Please Click on "Direct Download Link."

Office Excel 2007 Step by Step  Direct Download.

End of Post

Microsoft Office Access 2007 Step by Step Tutorial in PDF Direct Donwload Link

What is Microsoft Access

office access 2007
This page hopes to explain to you, What is Microsoft Access in simple terms

Microsoft Access has been around for some time, yet people often still ask me what is Microsoft Access and what does it do? Microsoft Access is a part of the Microsoft Office Suite. It does not come with all versions of Microsoft Office, so if you specifically want Microsoft Access make sure the office suite you are purchasing has it. 

Microsoft Access has the look and feel of other Microsoft Office products, including its layout and navigational aspects. That is where the similarity ends. Microsoft® Access is a database and, more specifically, a relational database. This will be explained in more detail later.
Access has an .mdb extension by default, whereas Microsoft® Word has the .doc extension. Although this has changed in Access 2007 where the extension is now an accdb extension. Early versions of Access cannot read accdb extensions but Microsoft Access 2007 can read and change earlier versions of Access. The above is a bried overview of what is Microsoft Access. Now lets look at it in a bit more detail.


What is Microsoft Access made up of ?
The Microsoft® Access Database is made up of 7 major components:
  • Tables.
  • Relationship.
  • Queries.
  •  Forms.
  • Reports.
  • Macros.
  • Modules.
The following gives a quick overview of each component.

Tables.
The tables are the backbone and the storage container of the data entered into the database. If the tables are not set up correctly, with the correct relationships, then the database may be slow, give you the wrong results or not react the way you expect. So, take a bit of time when setting up your tables.

Queries, forms, etc. are usually based on a table.
The tables that contain data look a bit like a table in Microsoft® Word or a Microsoft® Excel Spreadsheet, when opened. They have columns and rows as does a table in Microsoft® Word and an Excel worksheet. Each of the columns will have a field name at the top and each of the rows will represent a record.

Relationships
Relationships are the bonds you build between the tables. They join tables that have associated elements. To do this there is a field in each table, which is linked to each other, and have the same values. 

Are the means of manipulating the data to display in a form or a report. Queries can sort, calculate, group, filter, join tables, update data, delete data, etc. Their power is immense. The Microsoft® Access database query language is SQL (Structured Query Language). The need to know SQL is not required in the early stages of learning Access. Microsoft® Access writes the SQL for you, after you tell it what you want, in the Design view of the queries window.

Forms
Forms are the primary interface through which the users of the database enter data. The person who enters the data will interact with forms regularly. The programmer can set the forms to show only the data required. By using queries, properties, macros and VBA (Visual Basic for Applications), the ability to add, edit and delete data can also be set. Forms can be set up and developed to reflect the use they will be required for.

Reports
Reports are the results of the manipulation of the data you have entered into the database. Unlike forms, they cannot be edited. Reports are intended to be used to output data to another device or application, i.e. printer, fax, Microsoft® Word or Microsoft® Excel.

Macros
Macros are an automatic way for Access to carry out a series of actions for the database. Access gives you a selection of actions that are carried out in the order you enter. Macros can open forms; run queries, change values of a field, run other Macros, etc. the list is almost endless.

Modules
Modules are the basis of the programming language that supports Microsoft® Access, The module window is where you can write and store Visual Basic for Applications (VBA). Advanced users of Microsoft® Access tend to use VBA instead of Macros. If you would like to learn VBA, I have a simple step by step lessons.

All of the above components are persistent; this means that changes are saved when you move from one component to another, not when the database is closed, as in a Microsoft® Word Document.
I hope the above give you a bit of an idea of what is Microsoft Access and what it includes.

Limitations.
The total size of a database file (.MDB) is limited only by the storage capacity of your PC (Microsoft® quote the maximum database size of 2 Gigabyte (2000 Megabytes)). These figures are for pre 2007 versions of Microsoft Access.

Very few realistic limitations exist, though here are some parameters

Maximun table size = 1 GB
No. if fields in a record or table = 255
No. of indexes in a table or a record = 32
No. of fields in an index = 10
Maximum size of a form or report = 22"
Characters in a memo field = 64,000
MDB size = 2 GB
Max Integer = 2,147,483,648
Concurrent Users = 255
No. of characters in object names = 64

Microsoft Office Access 2007 step by step Tutorial
For Downloading the files Please Click on "Direct Download Link."

Office Access 2007 Step by Step  Direct Download.

End of Post

Tuesday, April 3, 2018

फैट अवे स्लिमिंग आयुर्वेदिक टेबलेट्स - १. कोई उपहास नहीं, २. कोई वयायाम नहीं, ३. कोई दुष्परिणाम नहीं.

फैट अवे

स्लिमिंग आयुर्वेदिक टेबलेट्स

१. कोई उपहास नहीं, २. कोई वयायाम नहीं, ३. कोई दुष्परिणाम नहीं. 

Fat Away IMC Ayurvedic Tablets
Contain exract of the followings jadi booti.
  • गुग्गुलु        : Guggulu.
  • गार्सिनिया   : Garcinia.
  • गार्लिक       : Garlic.
  • ग्रीन चाय    : Green Tea.
  • गिलोये        : Giloy.
  • एलोवेरा       : Aloevera.
  • चित्रक         : Chitrak
  • नागरमोथा  : Nagarmotha.
  • अनंतमूल    : Anantmool.
  • कुटकी         : Kutaki.
  • करलूमा       : Caraluma.
  • त्रिफला        : Triphala.
  • सुंथी            : Sunthi.
  • काली मिर्च   : Balck Pepper.
  • पिप्पली       : Pippali. 
  • विडंगादि लौह : Vidangadi Lauh.

  1. फैट अवे तबलेसटस शरीर में जमा चर्बी कोगला कर वजन को प्राकृर्तिक तरीके से काम करती हैं.
  2. त्वचा को स्वस्त, चमकदार एवं झुर्रियाँ को हटाने में सहायक है. 
  3. कॉलेस्ट्रॉल कको नियांत्रित करने में सहायक है. 

 उपयोग:
एक-एक टेबलेट दोपहर और रत के भोजन से आधा घंटे पहले पानी के साथ या चिकित्सक के निर्देश अनुसार सेवन करें। दिन में २ से ३ लीटर पानी अवश्य पिये एवं भोजन सुझाव अनुसार करें।

 

Saturday, March 31, 2018

IMC Himalayan Berry Juice - English

Himalayan Berry Juice

SANJEEVANI BOOTI

Himalayan Berry Sanjeevani Booti

Sea- Buckthorn Fruit Juice

Nector For Children - Aged, Men - Women, Healthy - Unhealthy and Boon For Patients

According to mythology, when Lakshman ji was lying unconscious, Lord Rama asked Shri Hanuman ji to bring Sanjeevani Butti. As per belief the same is available in Leh Ladakh and is called Himalayan Berry. Lakshman Ji was treated with this herb ( Butti ) and got healthy benefits.

This herb grows on the thorny bushes in Leh in the region around Sindh river, where the temperature is from (-35&amp;deg; C) to (-40&amp;deg;C) and the oxygen level becomes quite low, but God has kept Himalayan Berry full of Oxygen so that people can fulfill their requirement of oxygen by its use. Its fruits, seeds, leaves and bushes are enriched with medicinal properties and used in medicines.


Himalayan Berry is full of Anti-ageing, Anti-disease, Anti-oxidant &amp;amp; Anti-cancer properties. It is called a store full of oxygen, vitamins and minerals particularly vitamin C. The Himalayan Berry has 4 to 100 times more vitamin C as compared to all the fruits in the world which are rich source of vitamin C. The content of vitamin C in Himalayan Berry is 20 times more as compared to, that in Amla. It contains more than 100 nutrients and is replete with various vitamins- C, A, E, B-1, B-2, 25 minerals and 18 amino acids. It is very useful for the people of all age group.


It is beneficial for the following diseases
  • Highly beneficial for cold, obesity, cancer, liver, blood pressure, cholesterol, diabetes, heart disorders, breathing disorders etc.
  • Mental, Physical and Sexual weakness.
  • Consuming himalayan berry juice a person can remain young and disease-free for more than 100 years.
  • It can be given to any age group and has no side effects.

It is a boon for sports person, students, elderly persons and lactating mothers.

DOSAGE : Mix 10 ml of Himalayan Berry Juice in 250 ml of water and take it in the morning and evening. or Mix 20 ml of Himalayan berry juice in 500 ml of water and take it in the morning.

IMC Aloe Vera Fibrous Juice

सदा जवान एवं निरोगी रहने का रहस्या

एलोवेरा फायबर्स जूस 

sada javan va nirogi rahene ka raaz

(आँवला-तुलसी-अदरक-स्टीविया युक्त)

यह बच्चे-बूढ़े, स्त्री-पुरुष, स्वस्थ व बीमार सभी के लिए अमृत एवं रोगियों के लिए वरदान है.

एलोवेरा:- एलोवेरा को घीक्वार, ग्वारपाठा और क्वारगंधाल भी कहते है. इसका वर्णन सभी प्राचीन ग्रन्थों में मिलता है. मिस्र की महारानी किलोपैट्रा अपने सौंदर्य प्रसाधन के रूप में, महान योद्धा सिकंदर अपनी घायल सेना के इलाज में एवं महत्मा गांधी जी दैनिक आहार के रूप में प्रतिदिन इसे इस्तेमाल करते थे. एलोवेरा की ३०० प्रजातियां पाई जाती है। लेकिन केवल ४ प्रजातियो में ९०% से १००% औषधीया गुण हैं। इसमें एक प्रजाति, जिसका नाम एलो बारबेडैंसिस मिलर है. जिसमें १००% औषधीया गुण पाए जाते हैं एवं सबसे उत्तम मानी जाती है. वह इस जूस में इस्तेमाल की जाती है। एलोवेरा में २०० से अधिक न्यूट्रिन्टस होते है, जिनमे २० अनिवार्य मिनरल्स, ८ अनिवार्य एमिनो एसिड्स, १४ सेकेंडरी एमिनो एसिड्स, एन्ज़यमेंस तथा १२ तरह के विटामिन विधमान है.एलोवेरा संसार का सबसे बेहतरीन एंटी-बायोटिक, एंटी-सेप्टिक, एंटी-ऑक्सीडेंट, एंटी-एजिंग, एंटी-डिसीज़, एंटी-वायरल, एंटी-स्ट्रॉस, एंटी-बक्ट्रियल, एंटी-टोक्सिन, एंटी-एलर्जिक, रोगाणु एवं कीटाणुओ को नष्ट करने वाला एवं ज्वरनाशक है. इसलिए एलोवेरा को हर तरह के रोगो को नष्ट काने वाला पौधा कहा जाता है. आज अधिकतर बिमारियों का कारन पेट की आंतों का साफ़ न होना है. एलोवेरा में पाए जाने वाले लिग्निंस (lignin s) तथा सैपोनिन्स (saponins ) हमारी आँतों में जमे होये विषैले तत्व (Toxins) को साफ़ करके आँतों को शक्ति प्रदान करते है. एलोवेरा हमारी शरीर की सभी छोटी बड़ी नस-नाड़ियों की सफाई करता है. कोशिकाओं में नई शक्ति और स्फूर्ति पैदा करता है. एलोवेरा एक आहार भी है और औषधि भी. यदि आप दवाओं व् रोगो से रहत पाना और बेहतरीन जीवन जीना चाहते हो तो एलोवेरा का नियमित सेवन करते रहें.

आँवला : आँवला पौष्टिक गुणों से भरपूर है. ये विटामिन सी का उत्तम स्त्रोत है. एक ताजे आँवले में २० संतरों के बराबर विटामिन्स होते है. यह शरीर को स्वास्थ्यवर्धक और सूंदर बनता है. इसमें एंटी-ऑक्सीडेंट,एन्ज़इम्स होते है. और बुढ़ापे को रोकता है. ऐसा कहा जाता है की अन्य किसी जड़ी बूटी में आवला जैसी औषधि गुण नहीं होते।

तुलसी : तुलसी सर्वरोग नाशक है एवं अति उत्तम औधधि है. 

अदरक : इससे स्वस्थ एवं यौवन बरकरार रहता है. पाचन भली भांति होता है और गैस उतपन्न नहीं होती एवं भूक खुलती है. 

स्टीविया : स्टीविया संसार का सबसे बढ़िया मीठे का स्त्रोत हो यह चीनी से ३०० गुना अधिक मीठा होता है. इसमें जीरो कॉलेरी, जीरो कार्बोहैड्रेट, एवं जीरो फैट है यह एंटी-बैक्टीरियल, एंटी-वायरल, एंटी-फंगल है. इसमें कई तरह के नियॉट्रियंटस होते है. मोटापा घटाने कॉलेस्ट्रॉल, शुगर, ब्लड प्रेशर में लाभदायक है.

एलोवेरा, आंवला, तुलसी, अदरक तथा स्टीविया २२० से अधिक बिमारियों में लाभदायक ही जैसे की : 

  • मोटापा, डाइबिटीज़, ब्लड प्रेशर, कॉलेस्ट्रॉल एवं हर्दय की बिमारियों।

  • ख़ासी ज़ुखाम, अस्थमा, बालो का सफ़ेद होना एवं गिरना।

  • कब्ज, जोड़ो, का दर्द, सायटिक का दर्द एवं सवाईकल।

  • अल्सर, लिवर के रोग, नसों के रोग, निमोनिया।

  • टी.बी., पाचन तंत्र के रोग, माइग्रेन, ब्रोन्काईट्स, पथरी एवं बवासीर।

  • आँखों की बीमारियां, किडनी के रोग, पीलिया(हेपेटाइटस). 

  • कैंसर, रेडियो एवं कीमोथरीपी, त्वचा के रोग व् कील मुहासे।

  • मसूड़ों से खून आना, सनबर्न, इरिटेबल बाउल सेन्द्रम।

  • एलोवेरा लिवर को शराब से होने वाली हानियों से बचता है.

  • एलोवेरा वीर्य, योन शक्ति, इच्छा, क्षमता, प्रसन्नता एवं स्टैमिना को बढ़ाता है.

  • एलोवेरा स्त्री का मित्र एवं स्त्रियों के लिए वरदान है. यहल्यूकोरिया को रोकता है. गर्भधारण क्षमता को बढ़ाता है तथा मासिक चक्र को नियमित करता है.

 

उपयोग : सुबह उठते ही ३० मि.ली. एलोवेरा जूस २५० मि.ली पानी में डालकर एवं रात को खाने के २ घंटे बाद ३० मि.ली. पानी में डालकर पीना चाहिये। एलोवेरा डॉक्टर्स दवरा बताई गई दवाओं से मिलकर कोई दुष्प्रभाव नहीं करता या चिकित्स्क के निर्देश अनुसार सेवन करें।