answersLogoWhite

0

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.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Is uppercase ever used in a C program?

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.


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"); }


Java program to convert lowercase to uppercase?

You can use the toUpperCase() method on a String to convert any String to all uppercase.


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.


What is the spelling of Czechoslovakia?

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


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 main function used in c?

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


How do you convert uppercase to lowercase and vice versa in c?

with toupper and tolower, from ctype.h


What is the compiler that is used in C?

A program that translates source program into object code.


What type of a program is used in order to enter c source code?

What type of a program is used in order to enter C source code


Write a program in FORTRAN C language to compute control ratios used in budgeting with reference to any organization?

if u give control ratios used in budgeting i can write program in C/C++


Write a program to generate uppercase using cSharp?

string s = "asdfqwer"; s = s.ToUpper(System.Globalization.CultureInfo.CurrentCulture);