answersLogoWhite

0


Best Answer

HTML is not case-sensitive, while C is a case-sensitive language.

In HTML, the tags, attributes, and values can be written in uppercase or lowercase letters, and it will still be interpreted the same way by the web browser. For example, the "p" tag can be written as or , and both will be interpreted as paragraph tags.

On the other hand, C is a case-sensitive language, which means that the identifiers such as variables, function names, and keywords must be written in the correct case. For example, "main" is different from "Main" and "MAIN" in C.

It's important to keep in mind the case sensitivity rules while coding in these languages to avoid syntax errors or unexpected behavior.

User Avatar

Newtum Solutions

Lvl 5
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

HTML is not case sensitive, but the programming language C is case sensitive.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Whether HTML is case sensitive or C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How about c and c plus plus are they case sensitive?

Yes. C and C++ are case sensitive, although, depending on implementation, external symbols might not be case sensitive.


Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.


What is one fact anout c language?

It is case-sensitive.


Is the identifiers 'name' and 'NAME' different in c?

Yes they is different, C language are case-sensitive.


What is the password for the US pikachu c-gear?

"PikachuCGear" (case-sensitive)


What is the basic syntax of C?

+ += - -= * *= / /= % %= = == != <= >= & && | ^ ~ << <<= >> >>= , [] () are the basic operator in TURBO C


How do you convert HTML to c code?

You can't. HTML is a markup language. C is a programming language. You can make C generate HTML, but C isn't anything like HTML in the way it functions.


Can C scripting be incorporated into an HTML file and if so how?

No. C Scripting can not be incorporated into an HTML file.


Is it possible to declare a keyword as an identifier in c plus plus?

No. Keywords are reserved and cannot be used as identifiers. However, C/C++ is case-sensitive. So although register is a reserved keyword, Register is not.


WAP to initilize a character and print whether it is a vowel or not?

// short version char c = 'a'; System.out.println((c=='a'c=='e'c=='i'c=='o'c=='u')?"VOWEL":"CONSONANT"); // easy to read version char c = 'a'; switch (c) { case 'a': case 'e': case 'i': case 'o': case 'u': System.out.println("VOWEL"); break; default: System.out.println("CONSONANT"); }


Is c sharp a case sensitive language?

Yes. The upper/lower case chars are regarded as being different in C. For example, you can have two variables, one called 'x' and the other called 'X' and the compiler will recognize them as separate variables.


What can Cplusplus do vs HTML?

C++ can be used to make programs, HTML is for weblayouts and whatnot.