Answer Posted / sumalatha
Pointer is nothing but it addresses the value.
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
diff between exptected result and requirement?
Explain what does the format %10.2 mean when included in a printf statement?
c language interview questions & answer
Write a program of prime number using recursion.
Explain how can you avoid including a header more than once?
What are identifiers c?
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); }
Why do some versions of toupper act strangely if given an upper-case letter?
Is void a keyword in c?
What are identifiers in c?
what do the 'c' and 'v' in argc and argv stand for?
What is the role of this pointer?
What are the keywords in c?
What do you mean by c what are the main characteristics of c language?
What is the hardest programming language?