Answer Posted / honey
hexadecimal number of 4100 is FA0
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is identifier in c?
Why is python slower than c?
Explain function?
What are runtime error?
What is the collection of communication lines and routers called?
What are the disadvantages of a shell structure?
Is main is user defined function?
What is header file in c?
What are high level languages like C and FORTRAN also known as?
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); }
Is register a keyword in c?
What is atoi and atof in c?
Can we assign string to char pointer?
Is anything faster than c?