포인터형 변수와 정수형 상수의 연산

최명수 (13576)@Google의 이미지

C언어에서
int *ptr=0x0010;
ptr+1;

이렇게 하면 Visual Studio에서
warning C4047: '초기화 중': 'int *'의 간접 참조 수준이 'int'과(와) 다릅니다.
라고 뜨던데

이 경고 어떻게 숨길 수 없을까요?
에러는 안 뜨고 경고만 떠서 해도 되는 짓거리인지는 알겠는데...

shint의 이미지

//
묵시적 형변환이 안되는경우.
명시적 형변환으로 하시면 됩니다.

//
Visual Studio 6.0 에서는 오류로 표시됩니다.
C:\Users\IEUser\Desktop\test\test.cpp(10) : error C2440: 'initializing' : cannot convert from 'const int' to 'int *'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast

//
http://codepad.org/ZVDHMqSf

#include <stdio.h>
 
int main(int argc, char* argv[])
{
    int *ptr=(int*)0x0550;
    printf("%x \n", ptr);
    ptr+1;
    printf("%x \n", ptr);
    return 0;
}
 
//
550
550

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

최명수 (13576)@Google의 이미지

처음에 오류가 ptr+1;에서 나오는 줄 알았더니 아니었네요... 줄 수를 헷갈렸네요 ㅎㅎ
그러고 보니 포인터 변수에 정수가 들어가니 컴파일러도 놀랐겠네요

감사합니다!

shint의 이미지

ptr = ptr+1; 로 하면. 4가 추가 됩니다.

#include <stdio.h>
 
int main()
{
    int *ptr=(int*)0x0550;
	printf("%x \n", ptr);
    ptr = ptr+1;
	printf("%x \n", ptr);
    return 0;
}
 
//
550 
554

http://codepad.org/W6YOqvDl

#include <stdio.h>
 
int main()
{
    int pos = 0x0551;
    int *ptr=(int*)pos;
	printf("%x \n", ptr);
	printf("%x \n", &ptr);
    ptr=ptr+0x0001;
	printf("%x \n", ptr);
	printf("%x \n", &ptr);
    ptr=&ptr-0x0001;
	printf("%x \n", ptr);
	printf("%x \n", &ptr);
 
    int ** p = 0x0110;
	printf("p     %x \n", p);
	printf("&(*p) %x \n", &(*p));
	printf("&p    %x \n", &p);
	printf("*(&p) %x \n", *(&p));
 
	printf("p     %x \n", p+1);
	printf("&(*p) %x \n", &(*p)+1);
	printf("&p    %x \n", &p+1);
	printf("*(&p) %x \n", *(&p)+1);
    return 0;
}
 
//
551 
ffd2d314 
555 
ffd2d314 
ffd2d310 
ffd2d314 
p     110 
&(*p) 110 
&p    ffd2d310 
*(&p) 110 
p     114 
&(*p) 114 
&p    ffd2d314 
*(&p) 114 

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.