Explain zero based addressing.
No Answer is Posted For this Question
Be the First to Post Answer
Can we use any name in place of argv and argc as command line arguments?
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); }
What is the meaning of typedef struct in c?
What is the condition that is applied with ?: Operator?
When should we use pointers in a c program?
Does c have an equivalent to pascals with statement?
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.
What is NULL pointer?
What is the right type to use for boolean values in c?
Write the syntax and purpose of a switch statement in C.
write a code for large nos multilication (upto 200 digits)