answersLogoWhite

0

Yes. By convention, macros use all uppercase while all user-defined names should have a leading capital to differentiate them from standard library names which are all lowercase.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

Is uppercase used in a C program?

By convention, all upper-case is used to identify macros and single capitals to identify template parameters. However, programmers are free to use upper-case as they see fit.


What is a upper case letter?

An uppercase letter, also known as a capital letter, is the larger form of a letter in the alphabet used at the beginning of sentences, proper nouns, and acronyms. For example, 'A,' 'B,' and 'C' are uppercase letters corresponding to their lowercase counterparts 'a,' 'b,' and 'c.' Uppercase letters are often used for emphasis and clarity in writing.


Write a program to initialize a character and print whether it is uppercase lowercase or special character in java module 1?

I'll just write a function to do that, I hope the good people won't try to run it as it is.... void function() { char c = 'a'; if( c >= 'a' && c <='z' ) System.out.println("LowerCase"); else if( c>='A' && c <='Z' ) System.out.println("UpperCase"); else System.out.println("Special Character"); }


What is upper case letter?

An uppercase letter, also known as a capital letter, is a form of a letter that is typically larger and used to signify the beginning of sentences, proper nouns, and acronyms. For example, 'A', 'B', and 'C' are uppercase letters, whereas 'a', 'b', and 'c' are their lowercase counterparts. Uppercase letters are important in written language for clarity and emphasis.


C plus plus program to print sum of uppercase digits?

Good luck. I don't think it is possible, since there is no such thing called upper case digits.


Stack c language program of palindrome?

what ever you assume


What is represented by uppercase letters in science?

In science, uppercase letters are often used to denote specific constants, variables, or units. For instance, in physics, 'C' commonly represents the speed of light, while 'G' denotes the gravitational constant. Additionally, in genetics, uppercase letters are used to indicate dominant alleles in the representation of traits. Overall, uppercase letters serve as standardized symbols that convey important information across various scientific disciplines.


What is uppercase and lowercaseletter?

Uppercase letters, often called capital letters, are the larger form of letters used to begin sentences or for proper nouns, such as "A," "B," or "C." Lowercase letters are the smaller form used in most writing, such as "a," "b," or "c." Together, they make up the alphabet and are essential for distinguishing proper grammar and meaning in written language.


Write program using c programig to convert uppercase to lower case?

#include <stdio.h> int main() { int n; char ch; scanf("%d", &n); { scanf("%c", &ch); ch-=32; } printf("%c", ch); return 0; }


What is the spelling of Czechoslovakia?

You have it right. It's Czechoslovakia, with an uppercase C, of course.


What does upercase mean?

"Uppercase" refers to capital letters in the alphabet, such as A, B, C, and so on. These letters are typically used at the beginning of sentences, for proper nouns, or to emphasize certain words. In contrast, "lowercase" letters are the smaller versions, like a, b, c. The distinction between uppercase and lowercase is important in writing and typography.


What is main function used in c?

if you do not used main function in c program when errors are accrued