-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http://Microsoft powerpoint
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http://Microsoft PowerPoint
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http ://Python
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http://C++ programming
-
M.Nathira Parveen started the topic Difference between Turbo C++ and Dev C++ in the forum C++ 2 years, 5 months ago
1. Turbo C++ (TC) : It is a compiling software used for C and CPP Language. The initial release was in May 1990 but the first stable version released in September 2008. It takes more memory and time to load as compared to Dev C++. Turbo C++ is the compiler from which most of us start our coding life in school/college. 2. Dev C++ : Dev C++ is also…[Read more]
-
M.Nathira Parveen started the topic The function malloc() in C++ in the forum C++ 2 years, 5 months ago
The function malloc() in C++ is used to allocate the requested size of bytes and it returns a pointer to the first byte of allocated memory. A malloc() in C++ is a function that allocates memory at the runtime, hence, malloc() is a dynamic memory allocation technique. It returns a null pointer if fails.
Syntax:
pointer_name = (cast-type*) malloc(size);
-
M.Nathira Parveen started the topic C++ in the forum C++ 2 years, 5 months ago
The <cstdio> header file is a part of the C++ standard library collection that provides the input and output methods of <stdio.h> library of C language. We can use the traditional C-style input and output method in C++ using the <cstdio> library. It also contains all the functions and macros of <stdio.h> library of C language.
We can import…[Read more]
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http://Microsoft word
-
M.Nathira Parveen wrote a new item 2 years, 5 months ago
http://Microsoft word
-
M.Nathira Parveen started the topic How to Remove Watermark in Microsoft Word? in the forum Microsoft Word 2 years, 5 months ago
Microsoft Word is the mostly used software for writing any document in a good manner. MS Word also offers a special function that helps to provide a Watermark to the document. A Watermark is a special feature that helps to restrict any individual to copy the content directly. But sometimes, there is a need to remove the watermark present in the…[Read more]
-
M.Nathira Parveen started the topic How to save a Document in Microsoft Word? in the forum Microsoft Word 2 years, 5 months ago
Saving a document is a very important step that is to be executed right after the addition of some content in a document. This is done to prevent the loss of data that might occur because of power cuts or system failure. There are multiple ways provided by MS Word to save a file or a document with/without a name specified by the user.
-
M.Nathira Parveen started the topic How to Return a Pointer from a function in C? in the forum C Programming 2 years, 5 months ago
// C program to illustrate the concept of
// returning pointer from a function
#include <stdio.h>
// Function returning pointer
int* fun()
{
int A = 10;
return (&A);
}
// Driver Code
int main()
{
// Declare a pointer
int* p;
// Function call
p = fun();
printf(“%pn”, p);
printf(“%dn”, *p);
return 0;
} -
M.Nathira Parveen started the topic C Program For Char to Int Conversion in the forum C Programming 2 years, 5 months ago
// C program demonstrating conversion of
// char to int using typecasting
#include <stdio.h>
// Driver code
int main()
{
char ch = ‘G’;
printf(“%d”, (int)(ch));
return 0;
} -
M.Nathira Parveen started the topic Data Visualization in Excel in the forum Microsoft Excel 2 years, 5 months ago
Data Visualization is the representation of data in a graphical format. It makes the data easier to understand. Data Visualization can be done using tools like Tableau, Google charts, DataWrapper, and many more. Excel is a spreadsheet that is used for data organization and data visualization as well. In this article, let’s understand Data…[Read more]
-
M.Nathira Parveen started the topic How to Find the Percentage of Two Cells in Microsoft Excel ? in the forum Microsoft Excel 2 years, 5 months ago
If you want to find the percentage of two cells in Microsoft Excel, Simply select an empty cell, where you want to display the percentage of the two cells.
Type in the following formula in the selected cell :
=address of cell1/address of cell2
-
M.Nathira Parveen started the topic Editing Excel Macros in Excel in the forum Microsoft Excel 2 years, 5 months ago
Excel Macro is a set of actions that can be recorded, saved, used multiple times. This feature saves us a lot of time when dealing with repetitive tasks and huge data sets. We can always make changes to an existing Macro in Excel.
There are two ways to record and run macros:
Excel Commands
Excel Visual Basic for Applications(VBA). - Load More
