Text-transform:uppercase;The Text-transform property controls the case of the text.This property changes the case of the letters in the element, regardless of the case of the text in the source document. If the value is capitalize, some letters are
Header files: #include
Definition function: int toupper (int c);
Function Description: If the parameter c is a lowercase letter, the corresponding uppercase letter is returned.
Return value: Returns the converted uppercase letter, returning
From: http://blog.21ic.com/user1/349/archives/2008/48018.html
It is recommended to write C language. A beautiful macro definition is very important. Using a macro definition can prevent errors, improve portability, readability, and convenience. The
Lesson 1
Subject:Array definition and reference
Purpose:Understanding the definition and reference methods of Arrays
Teaching focus:Array initialization and array element reference methods
Teaching difficulties:Initialization, reference
Course
JAVA class and object (2) ---- class definition basics, java ----
Classes are the basic elements of java programs and an important composite data type in java. It encapsulates the states and methods of a class of objects, and is the prototype of
Write a good-looking macro definition in C language. Using macro definition can prevent errors, improve portability, readability, and convenience. The following lists some macro definitions commonly used in mature software ......1. prevent a header
C language Macro definition tips (common macro definitions)Write good C language, beautiful macro definition is important, using macro definition can prevent errors, improve portability, readability, convenience and so on. The following is a list of
Network Source: http://blog.chinaunix.net/uid-14022540-id-2849095.html
usage of "#" and "# # " in macros
I. GENERAL usageWe use # to turn the macro parameter into a string , and use # # to fit the two macro parameters together .
2. References to one-dimensional arrays:Array name [subscript];3. Initialization of one-dimensional arrays:A. Assigning an initial value to an array element when it is defined;B. You can assign values to only a subset of the elements;C. To make an
A single line definition of a macro#define A (x) t_# #x#define B (x) #@x#define C (x) #xWe assume: x=1, then there are:A (1)------〉t_1B (1)------' 1 'C (1)------"1"
. How to define macros, cancel macrosDefining macros#define [macroname]
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.