由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问个题目
相关主题
再问一个C的malloc( )请教amazon面试题
Amazon面经c语言里下划线开头的记号是什么意思?
问个stl的iterator问题攒rp,分享一下个人总结的Yelp HR小问题
问个C++模板定义的问题Yelp电面小问题汇总
问个C++的问题我的bloomberg肯定没戏了,发点面试题攒人品吧
问个python语法给大家看几道C 小程序
请问怎么用Class实现Stack算法题目一问
C++面试题目分享(2)onsite完,攒rp系列(二)
相关话题的讨论汇总
话题: datatype话题: sizeof话题: vari话题: without话题: size
进入JobHunting版参与讨论
1 (共1页)
P*******b
发帖数: 1001
1
You are given have a datatype, say X in C.
The requirement is to get the size of the datatype, without declaring a vari
able or a pointer variable of that type,And, of course without using sizeof
operator !
t*q
发帖数: 104
2
(int)((X*)0 + 1)

vari
sizeof

【在 P*******b 的大作中提到】
: You are given have a datatype, say X in C.
: The requirement is to get the size of the datatype, without declaring a vari
: able or a pointer variable of that type,And, of course without using sizeof
: operator !

s*********t
发帖数: 1663
3
why do you want to do this?

vari
sizeof

【在 P*******b 的大作中提到】
: You are given have a datatype, say X in C.
: The requirement is to get the size of the datatype, without declaring a vari
: able or a pointer variable of that type,And, of course without using sizeof
: operator !

P*******b
发帖数: 1001
4
面试题,没办法

【在 s*********t 的大作中提到】
: why do you want to do this?
:
: vari
: sizeof

P*******b
发帖数: 1001
5
这个是pointer arithemtic吧,好像不让。

【在 t*q 的大作中提到】
: (int)((X*)0 + 1)
:
: vari
: sizeof

r*********s
发帖数: 2157
6
#define sizeof_type( X ) \\
(size_t)((X*)1000 + 1 ) - (size_t)((X*)1000)
t*q
发帖数: 104
7
题目里没说啊,如果不让用,我觉得无解

【在 P*******b 的大作中提到】
: 这个是pointer arithemtic吧,好像不让。
1 (共1页)
进入JobHunting版参与讨论
相关主题
onsite完,攒rp系列(二)问个C++的问题
一道 C++ 的题。问个python语法
another C interview question请问怎么用Class实现Stack
有疑问的一题C++面试题目分享(2)
再问一个C的malloc( )请教amazon面试题
Amazon面经c语言里下划线开头的记号是什么意思?
问个stl的iterator问题攒rp,分享一下个人总结的Yelp HR小问题
问个C++模板定义的问题Yelp电面小问题汇总
相关话题的讨论汇总
话题: datatype话题: sizeof话题: vari话题: without话题: size