What is a pointer and how it is initialized?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is meant by high-order and low-order bytes?
which one is better structure or union?(other than the space occupied )
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Explain how are portions of a program disabled in demo versions?
how do we remove the printed character in printf statement and write next it it
WHAT IS PRE POSSESSORS?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain Function Pointer?
What are runtime error?
Can you assign a different address to an array tag?
swapping of two numbers without using third variable using AND and OR operators
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }