What is zero based addressing?
No Answer is Posted For this Question
Be the First to Post Answer
In which header file is the null macro defined?
What is the scope of global variable in c?
What is the difference between i++ and i+1 ?(in terms of memory)
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
what is c programming?
how can make variable not in registers
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
How do you access command-line arguments?
What does the c in ctime mean?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
What is 1d array in c?