what do you mean by defining a variable in our c code?
Answer Posted / jugad
Defining a variable means declare its data type , i.e
declaration of data type is very important in c it may be
int, float , long , unsigned,
and initialisation is not so important if you are not
initilize any variable compiler just initialize some garbage
value to that variable.
Courtesy:
http://answerwale.co.cc/?p=24#comment-20
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Not all reserved words are written in lowercase. TRUE or FALSE?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is spark map function?
How do you generate random numbers in C?
What is an array in c?
What is struct node in c?
How can I send mail from within a c program?
What is string length in c?
explain how do you use macro?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Do you know the difference between malloc() and calloc() function?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Are pointers integer?
What functions are in conio h?
What is structure data type in c?