int i=3; this declaration tells the C compiler to
a) reserve space in memory to hold the integer value
b) associate the name i with this memory location
c) store the value 3 at this location
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
What is the Difference between Class and Struct?
which one is better structure or union?(other than the space occupied )
What is the meaning of 2d in c?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
How are structure passing and returning implemented?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What is the maximum length of an identifier?
Are there any problems with performing mathematical operations on different variable types?
What is the size of structure in c?
do you think its fraud or original company?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Does c have class?