Answer Posted / ganesh
pointer variable is used to store the memory address of the another variable
Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Which one would you prefer - a macro or a function?
What are pointers really good for, anyway?
Explain data types & how many data types supported by c?
List the difference between a "copy constructor" and a "assignment operator"?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Why is structure padding done in c?
What is default value of global variable in c?
Are pointers really faster than arrays?
What is a wrapper function in c?
Explain union. What are its advantages?
What are the 32 keywords in c?
What is the maximum no. of arguments that can be given in a command line in C.?
What language is windows 1.0 written?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.