C Programming - Typedef - Discussion
|
|
|
|
Read more:"Example is better than precept."
- (Proverb)
|
| 1. |
Is the following declaration acceptable?
typedef long no, *ptrtono;
no n;
ptrtono p;
|
Answer: Option C
Explanation:
No answer description available for this question.
|
|
Irfan Khan said:
(Thu, Dec 30, 2010 04:16:21 AM)
|
|
| |
| Can anybody explain about this concept ? |
|
Nagarjun said:
(Fri, Mar 11, 2011 01:22:55 AM)
|
|
| |
In the program declaring the 2 data types.
i.e : no, *ptrono;
Then we declaring the variables for them. |
|
Prakash said:
(Mon, Jul 18, 2011 05:23:09 AM)
|
|
| |
| Please explain anybody. |
|
Indrajit said:
(Wed, Aug 10, 2011 12:19:42 AM)
|
|
| |
| How is it possible? |
|
Rohit said:
(Wed, Aug 17, 2011 11:22:59 AM)
|
|
| |
We are giving two different names to long i.e no and *prtono.
Either of these can be used to declare long variable. |
|
|