what do you mean by defining a variable in our c code?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / nikhil saxena
We only declare & initialize the variables in our code but
we never define them.
| Is This Answer Correct ? | 8 Yes | 4 No |
What is sizeof array in c?
When should you not use a type cast?
what is ram?
Differentiate abs() function from fabs() function.
Does sprintf put null character?
Explain b+ tree?
Can the “if” function be used in comparing strings?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the function of volatile in c language?
Is it better to use malloc() or calloc()?
how to make a scientific calculater ?
a simple c program using 'for' loop to display the output 5 4 3 2 1