Answer:
It's an internal joke to say the language is basically C with some extra stuff (like classes)
the "++" is short for
C += 1 or
C = C + 1 which is a common calculation among programmers so they named it C++ to be a more commercial and attractive name than "C with classes"
Explanation:
<span>The answer is Show IP OSPF interface
Hope this helped :)</span>
Answer:
int k;
double d;
char s[10];
cin >> k >> d >> s;
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s;
Explanation
First Step (declare K, d, s) so they can store a integer
int k;
double d;
char s[10];
Second Step (read in an integer, a real number and a small word)
cin >> k >> d >> s;
Third Step ( print them out )
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s;
Answer:
I guess c no. is the answer