-
Vikashini b wrote a new item 2 years, 12 months ago
How to edit the animation and how to change the audio?
-
Vikashini b wrote a new item 3 years ago
what are the escape characters in python?
-
Vikashini b wrote a new item 3 years ago
what are the keywords and identities?with program.
-
Vikashini b wrote a new item 3 years ago
what is logging in java?with program.
-
Vikashini b wrote a new item 3 years ago
what are the types of operators in c++ ? And how to write a code ?
-
Vikashini b started the topic fdim() in c++ in the forum C++ 3 years ago
#include<iostream>
#include<cmath>
Using namespace std:Int main()
{
double x=22,31,y= 13,17,
result:
result = fdim(x, y):
Cont<< “fdim(x, y) = ” <<
result <<end1:
long double xLD = -22,31,
resultLD;
Y = 13,14;
resultLD = fdim(xLD ,y);
Cout<< “fdim(xLD, y) = ” <<
resultLD << end1:return 0;…
-
Vikashini b started the topic Hierarchical inheritance in c++programming in the forum C++ 3 years ago
#include<iostream>
using namespace std;
//base class
class Animal{
public :
void info() {
cout<<“I am an animal.”<<
end1:
}
} -
Vikashini b started the topic How to share Documents in Microsoft word? in the forum Microsoft Word 3 years ago
To share the documents in word we want to invite the friends
Theail address of the person with who you want to share your documents in the invite people text box
Select from the drop-down list that the person can edit or can view your documents
Leave a message in the next text box -
Vikashini b wrote a new item 3 years ago
how many types of tab are available in MS word?
-
Vikashini b wrote a new item 3 years ago
How to write a coding in showcase inheritance in c?
-
Vikashini b started the topic Insect a worksheet in Excel in the forum Microsoft Excel 3 years ago
When Microsoft Excel is opened,by default, it has a worksheet opened.
To insect a new worksheet, click on the+symbol enclosed in a circle in the bottom left corner of the window beside sheet 1.
-
Vikashini b started the topic Sum of n terms in c programming in the forum C Programming 3 years ago
#include<studio.h>
#include<conio.h>
Void main()
{
int sum=0,I,n;
clrscr();
print(“enter the value of n”);
Scanf(“%d”,&n);
for(i=1:i<=n;i++)
{
sum=sum+i;
}
print(“sum of n terms is:%d”,sum);
getch();
} -
Vikashini b wrote a new item 3 years ago
why we are using #include ? 2.For we are using #include? 3. Why we using %d?
