-
Malarvizhi M started the topic How to paste in turbo C++ in the forum C++ 2 years, 8 months ago
Paste in turbo C++ can be done by two techniques:
>Shift+Insert
>Open the file in notepad with .cpp extension. Make the changes and save it. After saving the file, you can open it from the Turbo C++ application file >menu from where you stored the cpp file. -
Malarvizhi M started the topic What is an exception in C++ in the forum C++ 2 years, 8 months ago
Runtime abnormal conditions that occur in the program are called exceptions. These are of 2 types:
– Synchronous
– Asynchronous
C++ has 3 specific keywords for handling these exceptions:
– try
– catch
– throw
-
Malarvizhi M started the topic What is the difference between structure and class in C++ in the forum C++ 2 years, 8 months ago
The difference between structure and class is as follows:
– By default, the data members of the class are private whereas data members of structure are public.
– While implementing inheritance, the access specifier for struct is public whereas for class its private.
– Structures do not have data hiding features whereas class does.
– Structu…[Read more]
-
Malarvizhi M started the topic How to use a string in C++ in the forum C++ 2 years, 8 months ago
A string is a sequence of characters. In C++, the string is a data type as well as a header file. This header file consists of powerful functions of string manipulation. A variable of string is declared as follows:
string str= “Hello”;
And to use string one needs to include the header file.
// Include the string library
#include <string>
//…[Read more]
-
Malarvizhi M started the topic What are the advantages of Macro over function in the forum C Programming 2 years, 8 months ago
Macro on a high-level copy-paste, its definitions to places wherever it is called. Due to which it saves a lot of time, as no time is spent while passing the control to a new function and the control is always with the callee function. However, one downside is the size of the compiled binary is large but once compiled the program comparatively…[Read more]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What is the function of s++ and ++s
-
Malarvizhi M started the topic Define in the forum C Programming 2 years, 8 months ago
it is a header file in C that contains prototypes and definitions of commands such as scanf and printf.[2] [MOU3]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
When a header file in c++ is included in double-quotes, the particular header file is first searched in the compiler’s current working directory. If not found, then the built-in include path is also searched.
-
Malarvizhi M wrote a new item 2 years, 8 months ago
calloc() is a dynamic memory allocation function that loads all the assigned memory locations with 0 value.
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Modifier is a prefix to the basic data type which is used to indicate the modification for storage space allocation to a variable. Example– In a 32-bit processor, storage space for the int data type is 4.When we […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Toupper() function is used to convert the value to uppercase when it used with characters. Code: #include #include int main() { char c; c = ‘a’; printf(“%c -> %c”, c, toupper(c)); […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
What are the main components of MS Word
-
Malarvizhi M started the topic What are the main components of MS Word in the forum Microsoft Word 2 years, 8 months ago
Following is the list of main components of MS Word:
Home
Insert
Page layout
Reference
Mailing
Review
View -
Malarvizhi M started the topic editing restricted in MS Word in the forum Microsoft Word 2 years, 8 months ago
In order to restrict the editing, following points needs to be considered.
>Select the review tab, click on restrict editing.
>Automatically a pop up will appear on the right of the screen.
>Go to editing restriction, select the drop down from where restriction has to be made e.g. Comment, track changes, filling in the form, or read-only.
>A…[Read more] -
Malarvizhi M started the topic What are the features of the C language in the forum C Programming 2 years, 8 months ago
Some features of the C language are-
>It is Simple And Efficient.
>C language is portable or Machine Independent.
>C is a mid-level Programming Language.
>It is a structured Programming Language.
>It has a function-rich library.
>Dynamic Memory Management.
>C is super fast.
>We can use pointers in C.
>It is extensible. -
Malarvizhi M started the topic Why is C called a mid-level programming language in the forum C Programming 2 years, 8 months ago
C has characteristics of both assembly-level i.e. low-level and higher-level languages. So as a result, C is commonly called a middle-level language. Using C, a user can write an operating system as well as create a menu-driven consumer billing system.
-
Malarvizhi M wrote a new item 2 years, 8 months ago
The area where data is stored is known as cell.
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Live Presentation feature is announced by Microsoft that is available only for PowerPoint on the web. Presenter can add the audience by just sharing a direct link to them. It will show your presentation in […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Zoom control allows the users to zoom-in and zoom-out the slide. This zoom control shortcut option presents at the bottom of the PowerPoint and near the slide view. Zoom Control has a range meter containing a […]
-
Malarvizhi M wrote a new item 2 years, 8 months ago
Slide Shorter View is a view to see the slides presentation in a shorter view. It allows the users to see all the slides in a single view. Slide Shorter View makes it easy for the users to sort and organize the […]
- Load More
