Answer Posted / chaitali anand tendulkar
A pointer is a variable which contains a address in memory
of another variable. in other words it is a address of
variable.
| Is This Answer Correct ? | 27 Yes | 2 No |
Post New Answer View All Answers
what is the syallabus of computer science students in group- 1?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
How can I call a function with an argument list built up at run time?
Why is c called c not d or e?
How can you convert integers to binary or hexadecimal?
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); }
Define VARIABLE?
What is c programming structure?
What are loops c?
What is d scanf?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Explain what are bus errors, memory faults, and core dumps?
Why is c called a structured programming language?
What are types of preprocessor in c?
How can I read/write structures from/to data files?