⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.cpp

📁 a program that generates a pulse-width modulated (PWM)signal.
💻 CPP
字号:
// What size are common types in 32-bit console mode applications?
#include <iostream.h>
#include <stdlib.h>
#include <conio.h>

void main(void)
	{
   cout << "int " << sizeof(int) << " long " << sizeof(long) <<
   	" short " << sizeof(short) << " float " << sizeof(float) <<
      " double " << sizeof(double) << "\n";
   cout << "Hit any key to exit.\n";
   while(!kbhit()) ;  // Wait to exit
   }
   

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -