-
RachelJemimah started the topic Go to statement in c++ in the forum C++ 2 years, 5 months ago
The goto statement in C++ programming is used to change the normal sequence of programme execution by transferring control to another part of the programme.
Syntax:
goto label;
… .. …
… .. …
… .. …
label:
statement;
… .. …
Label is an identifier in the syntax above. When the command goto label; is encountered, the program’s c…[Read more] -
RachelJemimah started the topic For loop in c++ in the forum C++ 2 years, 5 months ago
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.
For example
For example:#include <iostream>
using namespace std;
int main(){
for(int i=1; i>=1; i++){
cout<<“Value of variable i is: “<<i<<endl;
}
return 0;
} -
RachelJemimah started the topic Get the Number of Words, Characters, Lines and Pages from Word Document i in the forum Microsoft Word 2 years, 5 months ago
1. Launch Microsoft Word 2013.
2. Open the word document.
3. in the status bar (bottom of the word document), click on the place where it shows “<N> of <N> words”.
4. This will display a Dialog which will show the Word count along with all the other necessary information.
-
RachelJemimah started the topic How to Invert Text in Microsoft Word ? in the forum Microsoft Word 2 years, 5 months ago
1. Microsoft Word 2013 and open the document where you want to insert the inverted text.
2. Select and copy the text that you want to invert.
3. Position your cursor when the inverted text has to enter and then click paste -> Paste Special option.
4. In the Paste Special Popup Dialog, select “Picture (Windows Metafile)” and then click OK.…[Read more]
-
RachelJemimah started the topic How to Share Document in Microsoft Word? in the forum Microsoft Word 2 years, 5 months ago
To share documents in Word, open the document that you want to share.
Now, click the Share button in the upper-right corner of the ribbon.
How to Share Document in Microsoft Word?
The Share task pane will appear on the right side of your window.
How to Share Document in Microsoft Word?
The mail address of the person with who you want to share…[Read more] -
RachelJemimah started the topic While loop in c in the forum C Programming 2 years, 5 months ago
include <stdio.h>
int main() {
int i = 1;while (i <= 5) {
printf(“%dn”, i);
++i;
}return 0;
}Output:
1
2
3
4
5 -
RachelJemimah started the topic Text function in excel in the forum Microsoft Excel 2 years, 5 months ago
The TEXT function lets you change the way a number appears by applying formatting to it with format codes. It’s useful in situations where you want to display numbers in a more readable format, or you want to combine numbers with text or symbols.
-
RachelJemimah started the topic Text function in the forum Microsoft Excel 2 years, 5 months ago
The TEXT function lets you change the way a number appears by formatting to it with format codes. It’s useful in situations, where you want to display numbers in a more readable format, or you want to combine numbers with text or symbols.
-
RachelJemimah started the topic Data format in the forum Microsoft Excel 2 years, 5 months ago
Data format is the definition of the structure of data within a database or file system that gives the information its meaning. Structured data is usually defined by rows and columns, where columns represent different fields corresponding to, for example, name, address, and phone number, and each field has a defined type, such as integers,…[Read more]
-
RachelJemimah started the topic Hello world in the forum C Programming 2 years, 5 months ago
#include <stdio.h>
int main()
{
printf(“Hello worldn”);
return 0;
}
