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 9166203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:06:11+00:00 2026-06-17T15:06:11+00:00

I have uint8_t orig[ETH_ALEN]; How can I print it using __printf(3, 4) which is

  • 0

I have uint8_t orig[ETH_ALEN];

How can I print it using __printf(3, 4)

which is defined as #define __printf(a, b) __attribute__((format(printf, a, b)))

the Orig should be ethernet hardware address.

  • 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-17T15:06:12+00:00Added an answer on June 17, 2026 at 3:06 pm

    You need to construct a format string that’s suitable. The printf() function has no way of printing an array in one go, so you need to split it and print each uint8_t:

    __printf("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n",
             orig[0] & 0xff, orig[1] & 0xff, orig[2] & 0xff,
             orig[3] & 0xff, orig[4] & 0xff, orig[5] & 0xff);
    

    The & 0xff is to ensure only 8 bits are sent to printf(); they shouldn’t be needed for an unsigned type like uint8_t though so you can try without too.

    This assumes a regular 48-bit MAC, and prints using the conventional colon-separated hex style.

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

Sidebar

Related Questions

I have strings like uint8_t char[5] int[3] How can I write a short function
I have an NSString like so: 850210 How can i convert it to uint8_t
I have an image which is representative of an Array2D: template<class T = uint8_t>
I have the following C code: #define PRR_SCALE 255 ... uint8_t a = 3;
I have a range of C functions: const char* find_string(uint8_t id); int32_t find_int32(uint8_t id);
I have a std::vector<uint8_t> that contains strings at specific offsets. Here's a shortened dump:
have written this little class, which generates a UUID every time an object of
I have a pointer (uint8_t *myPointer), that I pass as parameter to a method,
I have the following code: const uint8_t HEADER_SIZE = 0x08; std::vector<uint8_t> a, b; uint8_t
Suppose I have this line of code, which loads 16 x 8-bit unsigned integer

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.