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 |
write a program to arrange the contents of a 1D array in ascending order
What is nested structure with example?
difference between the array and linked list general difference related to memory
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
what is the output of below int n=10; (n++)++; printf("%d",n);
Write a c program to demonstrate Type casting in c?
What are identifiers and keywords in c?
prototype of sine function.
What is getch?
What is a nested loop?
How can a string be converted to a number?
Where static variables are stored in c?