A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C# program to demonstrate unsafe code using pointers
Q:

C# program to demonstrate unsafe code using pointers

0

C# program to demonstrate unsafe code using pointers

All Answers

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

Program:

The source code to demonstrate the unsafe code using pointers is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to demonstrate unsafe code using pointers.

using System;

class UnsafeEx
{
    static unsafe void Main(string[] args)
    {
        int num = 10;
        int* ptr;
        
        ptr= #
        
        Console.WriteLine("Value  : " + *ptr);
        Console.WriteLine("Address: " + (int)ptr);
    }
}

Output:

Value  : 10
Address: 3207180
Press any key to continue . . .

Explanation:

In the above program, we created class UnsafeEx that contains the Main() method, here we used the unsafe keyword with the Main() method to define the unsafe method that can use pointers.

In the Main() method, we created a variable num, which is initialized with 10. Here, we also created an integer pointer then assign the address of the num variable into pointer ptr, and then print value and address using the pointer.

 

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now