-
Mahathi k started the topic How to print the coloured text in C++ in the forum C++ 2 years, 5 months ago
In C++ programming, the background of the output screen is black and text color is in white color. We can color both the background and text color in the output screen in the following ways.
-
Mahathi k started the topic Program to add two numbers in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main() {
int first_number, second_number, sum;
cout << “Enter two integers: “;
cin >> first_number >> second_number;// sum of two numbers in stored in variable sumOfTwoNumbers
sum = first_number + second_number;// prints sum
cout << first_number << ” + ” << second_number << “…[Read more] -
Mahathi k started the topic Swap numbers without useing temporary variable in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main()
{int a = 5, b = 10;
cout << “Before swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;a = a + b;
b = a – b;
a = a – b;cout << “nAfter swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;return…
-
Mahathi k started the topic Program in c++swap two numbers in the forum C++ 2 years, 5 months ago
#include <iostream>
using namespace std;int main()
{
int a = 5, b = 10, temp;cout << “Before swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;temp = a;
a = b;
b = temp;cout << “nAfter swapping.” << endl;
cout << “a = ” << a << “, b = ” << b << endl;return…
-
Mahathi k started the topic What is shortcut key for creating the hyperlinks in the forum Microsoft Word 2 years, 5 months ago
Select the text or picture that you want to display as a hyperlink. Press Ctrl+K.
-
Mahathi k started the topic How to edit the pdf document in the forum Microsoft Word 2 years, 5 months ago
Use the toolbar above your uploaded PDF to highlight, add text, freehand draw, or reply to comments. Download your edited PDF file or share a link, which will let others see the edits online.
-
Mahathi k started the topic How you can insert video in Microsoft word in the forum Microsoft Word 2 years, 5 months ago
Click Insert > Online Video. In the Insert Video window, you can search for videos on YouTube or insert a video’s embed code. (You get the embed code from the page where the video lives.) When you find the video you want, just click Insert.
-
Mahathi k started the topic If statement in C in the forum C Programming 2 years, 5 months ago
#include<stdio.h>
int main(){
int number=0;
printf(“enter a number:”);
scanf(“%d”,&number);
if(number==10){
printf(“number is equals to 10”);
} -
Mahathi k started the topic Mail merge in excel in the forum Microsoft Excel 2 years, 5 months ago
You can insert one or more mail merge fields that pull the information from your spreadsheet into your document.
1. Go to mailings insect merge fields
2. Add the field you want
3. Repeat steps 1 and 2 as needs
4. Choose file >save -
Mahathi k started the topic Structure of programs in the forum C Programming 2 years, 5 months ago
A C program is divided into six section
Documentation
Link
Definition
Global
Declaration
Main() function
Subprograms
While the main section is compulsory the rest are optional in the structure of c programming -
Mahathi k started the topic Keywords in C in the forum C Programming 2 years, 5 months ago
Keywords are words that have special meaning to c compiler in translation phases 7 and 8 an indentify can’t have the same spelling and case as a c keywords.
-
Mahathi k started the topic How to use it c++ operator overloading in the forum C++ 2 years, 5 months ago
#include <iostrem>
using namespace std;
//C++ operator overloading
Class Cal{
Private:
int X ;
Public :
call():X(30){}
Void operator ++(){
X = X + 30;}
Void print(){
Cout<<“operator:”<< X <<end();
}};
int main()
{
Cal c;
++c;
c.print();
return 0;
} -
Mahathi k started the topic How you can insert video in Microsoft word in the forum Microsoft Word 2 years, 5 months ago
On the insert tab in media group, click the arrow under video.select from file,and then browse to the location of your video and select it.on the insert button, click the down arrow,and then click insert.
-
Mahathi k started the topic What are the basic uses of Microsoft excel in the forum Microsoft Excel 2 years, 5 months ago
Date entry
Date management
Accounting
Financial analysis
Charting and graphing
Programming
Time management
Task management -
Mahathi k started the topic C program to find sum of all elements in a array in the forum C Programming 2 years, 5 months ago
#include<studio.h>
int main()
{
int a[5]={1,2,3,4,5};
int I,s=0;
for(i=0;I<5; I++)
{
S+=a[I];
}
Print(“sum:%d”,s);
}
