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

📄 escape-2.c

📁 用于进行gcc测试
💻 C
字号:
/* Copyright (C) 2001 Free Software Foundation, Inc.  *//* { dg-do compile } *//* { dg-options "-pedantic -std=c99 -fno-show-column" } *//* This tests various diagnostics with -pedantic about escape   sequences, for both the preprocessor and the compiler.   Neil Booth, 22 May 2001.  */#if '\e'		/* { dg-warning "non-ISO" "non-ISO \\e" } */#endif#if L'\u00a0'		/* { dg-bogus "unknown" "\\u is known in C99" } */#endifvoid foo (){  int c = '\E';		/* { dg-warning "non-ISO" "non-ISO \\E" } */  c = L'\u00a0';	/* { dg-bogus "unknown" "\\u is known in C99" } */}

⌨️ 快捷键说明

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