Q:

Rust program to swap two bytes of a number

belongs to collection: Rust Basic Programs

0

Here, we will create a 16-bit integer number and then we will swap bytes of the given number and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to swap two bytes of a number is given below. The given program is compiled and executed successfully.

// Rust program to swap two bytes of a number.

fn main()
{
    let mut num:u16 = 0x1234;

    println!("Number before swapping bytes is: {:#02x}", num);
    
    num = ((num << 8) & 0xff00) | ((num >> 8) & 0x00ff);
    
    println!("Number after swapping bytes is: {:#02x}", num);
}

Output:

Number before swapping bytes is: 0x1234
Number after swapping bytes is: 0x3412

Explanation:

Here, we created a 16-bit integer variable num with an initial value of 0x1234. Then we swapped bytes of the number using bitwise operators and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Rust Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Rust program to reverse bits of a binary number... >>
<< Rust program to print the octal number of a given ...