answersLogoWhite

0

How do you define c?

User Avatar

Anonymous

14y ago
Updated: 8/18/2019

If you mean defining an item a value then I can show you.

Say we have an item called Test. Test will be Defined as an int or integer.

int Test;

You can also Define Test a value such as:

Test=0;

Hoped this helped:D

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the use of define key word in c?

Actually, the preprocessor is not part of the C compiler, but here you are: #define is meant to define symbols. Examples #define NULL ((void *)0) #define getchar() getc(stdin)


Which class is used to define the controls in c sharp?

.Ascx class file is used to define the controls in c#


What does truefalse mean in C programming?

Nothing. You may define them, though: #define true 1 #define false 0


C program to find largest among three numbers?

#define max2(a,b) (b>a?b:a) #define max3(a,b,c) (max2(a,max(b,c)))


Define C as an object oriented language?

Don't.


Where is it possible to define a function in c?

yes you looser


How do you double the capacity of stack in c?

Something like this: before: #define MAXALLOC 256 after: #define MAXALLOC 512


What type of culture define in brother in a land?

a b c


How do you write a macro to find the biggest of 3 numbers in c plus plus?

#define biggest (a) > (b) && (a) > (c) ? (a) : (b) > (c) ? (b) : (c)


Define a complex number using c structure?

Just define two fields (whatever those are called in "C" - the parts of the structure), one for the real part, one for the imaginary part.Just define two fields (whatever those are called in "C" - the parts of the structure), one for the real part, one for the imaginary part.Just define two fields (whatever those are called in "C" - the parts of the structure), one for the real part, one for the imaginary part.Just define two fields (whatever those are called in "C" - the parts of the structure), one for the real part, one for the imaginary part.


Name two high level languages and define them?

Java C++


How do you declare constant in Turbo C?

In C there is no constant with a name. It is done with the preprocessor directive of #define as in #define pi 3.1416 The preprocesor substitutes every occurance of word pi (with blanks on either side) with 3.1416