Is a pointer a kind of array?
No Answer is Posted For this Question
Be the First to Post Answer
Why pointers are used in c?
Explain spaghetti programming?
Expand the following LKB BKL FFG
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?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What is identifier in c?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
what is difference between C and C++
Explain what is meant by high-order and low-order bytes?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
program to print upper & lower triangle of a matrix