/*--------------------------------------------------------------
HelloMsg.c -- Displays "Hello, Windows 98!" in a message box
(c) Charles Petzold, 1998
--------------------------------------------------------------*/ #include <windows.h> int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow)
{
MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), ) ; return ;
}
/*-----------------------------------------------------
SCRNSIZE.C -- Displays screen size in a message box
(c) Charles Petzold, 1998
-----------------------------------------------------*/ #include <windows.h>
#include <tchar.h>
#include <stdio.h> int CDECL MessageBoxPrintf (TCHAR * szCaption, TCHAR * szFormat, ...)
{
TCHAR szBuffer [] ;
va_list pArgList ; // The va_start macro (defined in STDARG.H) is usually equivalent to:
// pArgList = (char *) &szFormat + sizeof (szFormat) ; va_start (pArgList, szFormat) ; // The last argument to wvsprintf points to the arguments _vsntprintf (szBuffer, sizeof (szBuffer) / sizeof (TCHAR),
szFormat, pArgList) ; // The va_end macro just zeroes out pArgList for no good reason va_end (pArgList) ; return MessageBox (NULL, szBuffer, szCaption, ) ;
} int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow)
{
int cxScreen, cyScreen ; cxScreen = GetSystemMetrics (SM_CXSCREEN) ;
cyScreen = GetSystemMetrics (SM_CYSCREEN) ; MessageBoxPrintf (TEXT ("ScrnSize"),
TEXT ("The screen is %i pixels wide by %i pixels high."),
cxScreen, cyScreen) ;
return ;
}
#include <stdio.h>
int main()
{
int a[];
int i;
for(i=;i<;i++)
{
scanf("%d",&a[i]);
//}
//for(i=0;i<10;i++)
//{
printf("%d",a[i]);
} }
#include<stdio.h>
main(void)
{
int a,i=,b=; printf("a=b值为%d\n",a=b);
printf("a==b值为%d\n",a==b);
}
int a = ;//给a赋值2
int b = a;//给b赋值a,等效于:给b赋值2 if(a==b){//判断a是否等于b
printf("a等于b");
}else{
printf("a不等于b");
} “=”,和“==”理解不

最新文章

  1. [C#] 获取打印机列表
  2. 用js实现QQ自定义在线图片
  3. React Native实例
  4. Bootstrap_按钮工具栏
  5. 用javascript得到客户端IP的新方法
  6. C# and android
  7. oracle decode函数用法
  8. Ugly Problem
  9. 观光公交noip&lt;贪心&gt;
  10. 自定义Django的中间件
  11. 系统出现异常: too many values to unpack (expected 2)
  12. 面向对象(OOP)--OOP基础与this指向详解
  13. Ajax 学习总结
  14. Swift 之属性setter、getter方法
  15. angularjs1.6.4中使用ng-table出现data.slice is not a function的问题
  16. Python 爬取美团酒店信息
  17. Python爬虫学习之正则表达式爬取个人博客
  18. SpringBoot系列: 使用MyBatis maven插件自动生成java代码
  19. Mac Eclipse安装lombok
  20. MGF 637: Financial Modeling

热门文章

  1. 03Java基础——继承
  2. socket tcp clinet最简单测试程序
  3. warning MSB8030: The linker switch &quot;Minimum Required Version&quot; requires &quot;SubS
  4. springboot poi
  5. Django【第25篇】:后端CORS解决跨域问题
  6. 2.k8s资源清单
  7. c++ string去除左右空格
  8. appium环境666
  9. linux运维、架构之路-tomcat日志切割工具 logrotate
  10. PHP开发工具PHP基础教程