Answer Posted / ram
reference to the address of the variable
Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
find out largest elemant of diagonalmatrix
Write a program to swap two numbers without using third variable in c?
What is typeof in c?
What are control structures? What are the different types?
What is the mean of function?
What is volatile keyword in c?
Is there sort function in c?
How can I do peek and poke in c?
What are the differences between Structures and Arrays?
What math functions are available for integers? For floating point?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is class and object in c?
How do you print only part of a string?
Write a Program to find whether the given number or string is palindrome.
What is the difference between int main and void main in c?