Polymorphism/C: Difference between revisions

Updated formatting to use <syntaxhighlight>.
No edit summary
(Updated formatting to use <syntaxhighlight>.)
 
Line 1:
{{Programming-example-page|Polymorphism}}
<langsyntaxhighlight lang="c">/* After reading this you may understand */
/* why Bjarne Stroustrup's invented C++ */
#if defined( _WIN32 ) || defined( MSC_VER )
Line 171:
c->print();
return 0;
}</langsyntaxhighlight>
1

edit