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 does void main return?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Explain how can you avoid including a header more than once?
Give differences between - new and malloc() , delete and free() ?
what is event driven software and what is procedural driven software?
whitch value return void main?
Write a code to generate divisors of an integer?
write a program in c language for the multiplication of two matrices using pointers?
Is exit(status) truly equivalent to returning the same status from main?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
how to execute a program using if else condition and the output should enter number and the number is odd only...