answersLogoWhite

0

Yes.

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

What significant is attached to the name main in c language?

famous


Write a function that will scan a character string passed as an argument and convert all lowercase letters onto uppercase letters?

/* Write a function that will scan a character string passed as an argument & convert all lowercase characters into their uppercase characters*/ #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> int str_upp(char c[]) { int i; char x; printf("\n \n"); for(i=0;i<strlen(c);i++) { x=toupper(c[i]); printf("%c",x); } return (0); } void main() { char c[10]; clrscr(); printf("Enter string : \n"); scanf("%s",c); str_upp(c) ; getch(); } /* Output: Enter string : Heloo HELOO */


Why c language has name c why not a?

C-language was derived from B-language.


Whether HTML is case sensitive or C?

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.


What is C language what does it do?

C Language is First Step of Programming Language, Help for C Language you are show the correct answer