void main()
{
int i;
float n1,n2;
abc:
printf("Enter two nos ");
scanf("%f%f",&n1,&n2);
printf("\n %f + %f = %f " ,n1,n2,n1+n2);
printf("\n %f - %f = %f " ,n1,n2,n1-n2);
printf("\n %f x %f = %f " ,n1,n2,n1*n2);
printf("\n %f / %f = %f " ,n1,n2,n1/n2);
printf("\npress 5 to make another calculation");
scanf("%d",&i);
if (i==5)
goto abc;
}
for c language it is .c and for c++ it is .cpp
pata nhn
Software is programed in any computer language. There is software you use to make other but it depends on the language you are programing!!! Software for used to write software: C/C++ - Dev-Cpp, CodeBlocks, Eclipse Java - Eclipse Python - IDLE
Bjarne Stroustrup is the recognized inventor of the C++ object oriented programming language. C++ was an enhancement to the C language, which was not object oriented.
CPP
You need a network library such as cpp-netlib.
CPP Group was created in 1980.
CPP Studios Event GmbH was created in 1983.
Ctrl+Z mean EOF in WinDos, no matter what programming language you are using.
Hai,Refer c++ programming language by kelly pohl. You will find Many interresting projects in c++.
iOS is made by apple for they iphones and stand for "Iphone OS" and is not used in computer programming... see related links for more info about iOS
The C Programming language is structure oriented, and the C++ Programming language is Object oriented. In C, you create structures and function to process data and handle algorithms you write. in C++, you create classes that break down the algorithms into packages to get the job done. The great thing about C++ is that once you create a class, you can reuse it over and over in other programs. But with C, each part of the program is likely tightly integrated for that program and will require modifications to reuse it again later.C++ is an Object Oriented Programming but not C.This includes : -InheritanceAbstraction (using classes)Polymorphism - Operator overloading and virtual functionsGenericityand some more features...