main()
{
int ptr[] = {1,2,23,6,5,6};
printf("%d",&ptr[3]-&ptr[0]);
}
Answer Posted / jithin ramakrishnan
2
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
Explain the difference between getch() and getche() in c?
What is quick sort in c?
What is the use of #include in c?
What is a memory leak? How to avoid it?
What is the difference between procedural and declarative language?
What is volatile variable in c with example?
What is echo in c programming?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What are identifiers and keywords in c?
What are the different categories of functions in c?
What is string concatenation in c?
Write a program to print factorial of given number without using recursion?
What is a pointer variable in c language?
Explain indirection?