wat s the meaning of (int *)p +4;
Answers were Sorted based on User's Feedback
here 'p' must be a void pointer.
here (int*)p means that 'p' is type casted to point to the integer value.
that address is incremented by 4.
thank u
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / kathir
Type casting p to a pointer to integer.If p would have been
p=0x00000004 then this would increase the pointer by 4.
| Is This Answer Correct ? | 6 Yes | 0 No |
What is structure data type in c?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
what is the difference between declaration and definition of a variable or function ?
What is restrict keyword in c?
main() {int a=200*200/100; printf("%d",a); }
What are the main characteristics of c language describe the structure of ac program?
write a program to print the one dimensional array.
What is the mean of function?
What is a program?
What is methods in c?
Which is the best sort method for library management?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?