C 언어 초급 질문입니다.

kombo67의 이미지

안녕하세요.
코드 작성 중에 궁금한게 생겨 글 남겨봅니다.
문의내용은
코드를 보면 struct 를 인자로 넘겨가며 진행이 되는데
제 딴에는 전역으로 삼는게 더 나을 수도 있긴 하지만
앞으로 함수 매개변수를 통해 진행하는 연습을 해야할꺼 같아 진행을 했습니다.

구조체 주소를 넘기고
포인터를 형성, 주소를 받고 진행을 한다하면
설령 포인터가 함수내에서만 활성화된다 하더라도
주소에 있는 값을 건드리니
함수에 주소를 전달하여 값을 수정하는것이 가능하다 생각했습니다만
Xcode 로 디버깅 해보니까 각 점수를 나타내는 구간에서
모든 점수가 초기화 되어 있네요.

포인터와 구조체를 완벽히 이해가 안된 상태라 멘붕입니다..
제가 뭘 잘못하고 있는 걸까요.. 도움 부탁드립니다.

참고로 코드는 가위바위보 게임이며
게임 에 대한 승점이 올바르게 출력이 안되어 ( 유저가 이겼지만 컴터의 승점이 올라가 있는둥 )
수정중에 있었습니다.
코드는 아래와 같습니다.

#include <stdlib.h>
#include <stdio.h>
 
typedef struct Users {
    char* name;
    int rounds;
    int val;
    int wins;
    int draw;
}users;
 
int play(char*, int);
void setval(users);
int whoswin(users, int);
 
int currentRound = 0; //
int play(char *name, int round) {
 
    users set_user1;
    set_user1.name = name;
    set_user1.rounds = round;
 
    while(currentRound < set_user1.rounds) {
        setval(set_user1);
        currentRound++;
        printf("User : %d\nComp :%d\nDraw : %d\n\n", set_user1.wins, currentRound-(set_user1.wins+set_user1.draw), set_user1.draw);
    }
 
 
    return 0;
}
 
void setval(users set_user1) {
    users *user1 = &set_user1;
    user1->wins++;
    int val = (random() % 3) + 1;
    printf("가위 바위 보를 선택해주세요 : ");
    scanf("%d", &user1->val);
    if(user1->val > 3 || user1->val < 1) {
        printf("가위, 바위, 보에서 선택해주셔야 합니다.\n");
        user1->val = 0;
    }
    whoswin(*user1, val);
}
 
int whoswin(users user1, int comp) {
 
    users *user = &user1;
    if(user->val == 0) {
        printf("이번 게임은 무효로 처리하겠습니다.\n");
        if(currentRound!=0)
            currentRound = currentRound-1;
    }
 
    switch(user->val * comp) {
        case 2:
            printf("당신은 %s 냈습니다.\n\n", (user->val==2) ? "바위를" : "가위를");
            printf("Comp : %s 냈습니다.\n", (user->val==2) ? "가위를" : "바위를");
            if(user->val>comp)
                user->wins++;
            break;
        case 3:
            printf("당신은 %s 냈습니다.\n\n", (user->val==1) ? "가위를" : "보를");
            printf("Comp : %s 냈습니다.\n", (user->val==1) ? "보를" : "가위를");
            if(user->val<comp)
                user->wins++;
            break;
        case 6:
            printf("당신은 %s 냈습니다.\n\n", (user->val==3) ? "보를" : "바위를");
            printf("Comp : %s 냈습니다.\n", (user->val==2) ? "바위를" : "보를");
            if(user->val>comp)
                user->wins++;
            break;
        default:
            printf("비겼습니다 승점을 획득하지 못합니다.\n");
            user->draw++;
    }
    return 0;
}

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.