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

Post New Answer

More C Interview Questions

write a program whose output will be- 1 12 123 1234

10 Answers  


4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


How do you determine a file’s attributes?

0 Answers  


how to find your architecture is LittleEndian or BigEndian?

1 Answers  






write a function which accept two numbers from main() and interchange them using pointers?

3 Answers  


how to build a exercise findig min number of e heap with list imlemented?

0 Answers  


why do we use pointer instead directly acessing the data?

2 Answers  


Why the use of alloca() is discouraged?

2 Answers   Oracle,


What are header files and what are its uses in C programming?

0 Answers  


What are the types of assignment statements?

0 Answers  


What is the difference between GETS();AND SCANF();

4 Answers   TCS,


Categories