Which command is more efficient?
*(ptr+1) or ptr[1]
Answer Posted / priya
*(ptr+1)
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Explain how does free() know explain how much memory to release?
Was 2000 a leap year?
What are the modifiers available in c programming language?
Explain the ternary tree?
Is c pass by value or reference?
Explain why c is faster than c++?
What do you mean by c what are the main characteristics of c language?
Explain can you assign a different address to an array tag?
What is scope and lifetime of a variable in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are the different types of data structures in c?
Write a program to implement queue.
What is the difference between union and anonymous union?
How can you return multiple values from a function?
Explain is it valid to address one element beyond the end of an array?