Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8730619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T09:03:43+00:00 2026-06-13T09:03:43+00:00

Pretty self explanatory code. Why doesn’t it work! #include <stdio.h> int main() { __asm__(number

  • 0

Pretty self explanatory code. Why doesn’t it work!

#include <stdio.h>

int main() {
    __asm__("number dw 0"); // declare number?
    printf("%d",number);
    __asm__("mov %eax,number"
            "inc %eax"
            "mov number,%eax");
    printf("%d",number);
    return 0;
}

cc     ex1.c   -o ex1
ex1.c: In function ‘main’:
ex1.c:22:17: error: ‘number’ undeclared (first use in this function)
ex1.c:22:17: note: each undeclared identifier is reported only once for each function it appears in
make: *** [ex1] Error 1

Thanks.

I have a lot of knowledge gaps to fill… the gcc manual was confusing me with regards to inline assembly as was google results for tutorials…

working on an intel i7 processor

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T09:03:45+00:00Added an answer on June 13, 2026 at 9:03 am

    Use this syntax, you can access variables declared in C from the inline assembly

    #include <stdio.h>
    
    int main() {
        int number = 0;
        printf("%d\n",number);
        asm(
            "mov %[number],%%eax\n"
            "inc %%eax\n"
            "mov %%eax,%[number]\n"
            : [number] "=m" (number) : "m" (number) : "eax", "cc" );
        printf("%d\n",number);
        return 0;
    }
    

    You can let the compiler load number into the eax register for you by specifying the "a" constraint on the input

    #include <stdio.h>
    
    int main() {
        int number = 0;
        printf("%d\n",number);
        asm(
            "inc %%eax\n"
            "mov %%eax,%[number]\n"
            : [number] "=m" (number) : "a" (number) : "cc" );
        printf("%d\n",number);
        return 0;
    }
    

    And since x86 inc instruction can operate on memory directly you could reduce it to this

    #include <stdio.h>
    
    int main() {
        int number = 0;
        printf("%d\n",number);
        asm(
            "incl %[number]\n" /* incl -> "long" (32-bits) */
            : [number] "=m" (number) : "m" (number) : "cc" );
        printf("%d\n",number);
        return 0;
    }
    

    For more information see gcc documentation:

    6.41 Assembler Instructions with C Expression Operands

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I think the question itself is pretty self-explanatory. The code is given below -
I think the bug's pretty self-explanatory, so I'll just post the code and a
The following code is pretty self-explanatory and my question is very simple : Why
The title is pretty self explanatory. the following code...: URL imageUrl = new URL(url);
My title is pretty self explanatory. Here's my code: public class MainActivity extends Activity
I think its pretty self explanatory from the code. Obviously I'm no evaluating the
Should be pretty self-explanatory, but this is in the context of real-time XNA code
My code is pretty much self-explanatory. Please take a look: <html> <body> <!-- importing
Question is pretty self explanatory i guess. Here is the code I'm using: function
the code is pretty self explanatory. I'm trying to use sql to retrieve a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.