📜  将 c 代码转换为 c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:44.984000             🧑  作者: Mango

代码示例2
#include 
int main()
{
   /* printf function displays the content that is
    * passed between the double quotes.
    */
   printf("Hello World");
   return 0;
}