
Wesam
إلى
كل أصدقائى و زملائى الأعزاء هل حان الوقت وقد أصبحنا عدد لا يستهان بة أن
يكون لنا نقابة تحمى وتدعم وتضم أبنائها ليكن لهم كيان واضح وصريح ؟ مع
إحترامى لنقابة التجاريين أو العلميين أو حتى المهندسيين فقط كانوا حلم
وها هو أصبح حقيقة. http://www.facebook.com/MafiaWarsFans#/g roup.php?gid=251148947118&ref=ts

Ali Hood
if you like c++ add this group
http://www.facebook.com/profile.php?ref= profile&id=1628245269#/group.php?gid=233 096774307

Marc Kampf cout << happy new year << endl;

Mimi ✩ Mohamed Khalil nice gruop

Lenon Kaka Happy new year,c++

Donald What is your favorite IDE?.....mine MSVC...

Issam Lahlali
Linus torvalds think that C++ is not a good langage, discover and debate this opinion here http://cppdepend.wordpress.com/2009/12/0 4/c-vs-c-linux-analysis-case/

Andrea Bedini  in C++ (and maybe in C as well) if you have an array a[n] means *((a) + (n)) so you can assert( &a[n] == &n[a] ), crazy

Waleed Nasser
C and C++ are the greatest programming languages ever. In fact they are among the greatest ever achievements of humans over all ages.
These two languages have simply changed the course of life of the human race on planet Earth.
Just try for a few minutes to imagine life without UNIX, without Windows, without MS Office, o...r without browsers...
Isn't it enough that C gave birth to UNIX (the most powerful OS), to Windows, and to many programming languages?
Isn't it enough that C++ gave birth to Java and C# and to many great, indispensable SW applications?

ΣΑΚΙΣ ΔΗΜΟΠΟΥΛΟΣ std::cout<<"hello c++ programmers!<</n;

Mohammad Elnow Elniel Mohammad
#include <iostream>
using namespace std ;
void main()
{
char choice;
int a,b,c,d,x,y;
cout<<" welcome to fraction caluculator , enter any letter to start, enter e to exit";
cin>>choice;
cout<<choice;
while(choice != 'e')
{
cout<<"enter the first nomenator\n";
cin>>a;
cout<<"enter the first domonator, domonator don't equla zero\n"...;
cin>>b;
cout<<"enter the second nomenator\n";
cin>>c;
cout<<"enter the second domonator , domonator don't equla zero\n";
cin>>d;
if(b == 0)
{
cout<<" you have enter zero,enter a new value\n";
cin>>b;
}
if(d == 0)
{
cout<<"you have enter zero,enter a new value\n";
cin>>d;
}
x = a*d + c*b;
y = b*d;
cout<<a<<"/"<<b<<"+"<<c<< "/"<<d<<"="<<x<<"/"<<y;
//cin>>choice;
}
}















