answersLogoWhite

0


Best Answer

It is false. C is a case-sensitive language, so VALUE, Value and value are all treated as being different identifiers. By convention, all C standard library names are in lowercase and macro names are in uppercase. User-defined names typically begin with a leading capital.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

No.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

By design.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Are upper and lower case equivalent to C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Capital C or lower case c for County?

If you're not referring to a specific county (as in this sentence), use lower case 'c.' If you're referring to a specific county, use upper case 'C," e.g., "Cook County is in Illinois."


What is upper case and lower case characters?

These are upper case letters, a.k.a. capital letters: ABCDEFGHIJKLMNOPQRSTUVWXYZ These are lower case letters: abcdefghijklmnopqrstuvwxyz They got those names because back in the days of manual typesetting, typesetters stored the capital letters in the upper case and the others in the lower case.


What is capital letter?

A capital letter, also known as an uppercase letter, is a letter of the alphabet that is written or printed in a larger form than its lowercase counterpart. Capital letters are typically used at the beginning of sentences, proper nouns, and titles.


How many capital letters are in the alphabet?

UPPER CASE LETTERS A B C D E H I K M N O S T U V W X Y Z lower case c i k l m o s v w x z


Can you give me an example of upper case?

The term 'upper case' is a word or letters of the alphabet that are capitalized. Examples are: A B C D E F G Letters of the alphabet that are not capitalized are called 'lower case letters. Examples are: a b c d e f g


How many distinguishable permutation in Cincinnati?

If the first and second C are indistinguishable, then there are 554,400 permutations. If one is upper case and the other is lower case, then there are twice as many.


What does c stand for in roman numearls?

As a Roman numeral C or lower case c both are the equivalent of 100


What dose kcl stand for?

kcl does not stand for anything. For a chemical element or compound it is very important to ensure that the upper and lower case letters are used properly. For example, CO is carbon monoxide but Co is cobalt.KCl (upper case K and C, and lower case l) stands for potassium chloride.


What is the meaning of 1 upper and 1 lower case 1 numeric and 1 special char?

We suspect you may be trying to create a computer password.The upper case characters are: A B C D E . . . etc.The lower case characters are: a b c d e . . . etc.The numeric characters are: 1 2 3 4 5 . . . etc.Special characters are: . , < ? > / ! # $ % & * + etc.It's telling you that the password you choose must contain at leastone character from each group.


Finish the series b a c b d c e d f?

This looks like two series interspered with each other. Let's put some letters in upper-case and others in lower-case BaCbDcEdF... so the next letter would be the lower-case 'e'


What is upper case letter and lower case letter?

Lowercase and upper case letters refer to how a letter is written - as a capital letter ("A" for example) or as a small, lowercase, letter ("a" for example). Here are all the capital letters in the alphabet: ABCDEFGHIJKLMNOPQRSTUVWXYZ Here are the same letters as lowercase: abcdefghijklmnopqrstuvwxyz Upper case (capital) letters are used to begin sentences and for proper nouns, such as names.


What is the C program to print strings from A to Z and a to z?

#include&lt;stdio.h&gt; int main (void) { char upper[27]; // A-Z plus null terminator char lower[27]; // a-z plus null terminator char c; int i; for (i = 0, c = 'A'; c &lt;= 'Z'; ++c, ++i) { upper[i] = c; lower[i] = c - 'A' + 'a'; } upper[i] = 0; // null-terminator lower[i] = 0; // null-terminator printf ("%s\n", upper); printf ("%s\n", lower); return 0; }