How does sizeof know array size?
No Answer is Posted For this Question
Be the First to Post Answer
What does it mean when the linker says that _end is undefined?
What's the difference between a linked list and an array?
What are the different types of pointers used in c language?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Does c have an equivalent to pascals with statement?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
How can I implement a delay, or time a users response, with sub-second resolution?
how to devloped c lenguege?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
how would a 4*3 array A[4][3] stored in Row Major Order?
What are the 4 types of programming language?