Explain zero based addressing.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can we use any name in place of argv and argc as command line arguments?

0 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


What is the meaning of typedef struct in c?

0 Answers  


What is the condition that is applied with ?: Operator?

0 Answers  


When should we use pointers in a c program?

0 Answers  






Does c have an equivalent to pascals with statement?

0 Answers  


There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.

15 Answers   Cisco, Google, MBT,


What is ambagious result in C? explain with an example.

0 Answers   Infosys,


What is NULL pointer?

0 Answers   Infosys,


What is the right type to use for boolean values in c?

0 Answers  


Write the syntax and purpose of a switch statement in C.

0 Answers   Adobe,


write a code for large nos multilication (upto 200 digits)

2 Answers   Persistent,


Categories