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
What is assert and when would I use it?
How can I make it pause before closing the program output window?
How would you obtain the current time and difference between two times?
What is zero based addressing?
What should malloc() do?
What is the c value paradox and how is it explained?
What are different storage class specifiers in c?
What is array in c with example?
What is function prototype?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is the use of bit field?
What is the difference between class and object in c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Ow can I insert or delete a line (or record) in the middle of a file?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.