首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C语言 >

怎么消除void *这样的警告和返回预期值

2014-01-12 
如何消除void *这样的警告和返回预期值#include stdio.hint p(void *i){return (int *)i}int main(){in

如何消除void *这样的警告和返回预期值
#include <stdio.h>

int p(void *i)
{
  return (int *)i;
}

int main()
{
  int *i;
  int n = 99;
  i = &n;
  printf("====== %d =====\n", p(i));
}

test2.c: In function ‘p’:
test2.c:5: warning: return makes integer from pointer without a cast

[解决办法]
 return *((int *)i);

引用:
#include <stdio.h>

int p(void *i)
{
  return (int *)i;
}

int main()
{
  int *i;
  int n = 99;
  i = &n;
  printf("====== %d =====\n", p(i));
}

test2.c: In function ‘p’:
test2.c:5: warning: return makes integer from pointer without a cast

热点排行