Rd7
Rd7

Reputation: 45

print a struct pointer and a deferenced struct member

hello all i am new to programming,i have a paradigm where i need to print a pointer of type struct which gets the value dynamically in each iteration and also print a defrenced struct member on each iteration.

struct my_struct
{
int x;
int y;
}
void function(){

my_struct* a=value.get() // some values will be assigned dynamically to this pointer from other part of function.

my_struct* data = new thread_data;
data->x=1 //which will get updated according the iterations and conditions
data->y=2 //which will get updated according the iterations and conditions

}

now i need to print the values of a,x,y in the caller function, How to print those values. some what like

printf("a=%lx x=%i y=%i\n", a,x,y);

can someone please give me some ideas or how to proceed? thanks alot

Upvotes: 0

Views: 4626

Answers (1)

juanchopanza
juanchopanza

Reputation: 227618

In C++, you can use std::cout:

std::cout << "a=" << a << " x=" << a->x << " y=" << a->y << "\n";

Otherwise, your printf version can be fixes like this:

printf("a=%p x=%i y=%i\n",  a, a->x, a->y);

Upvotes: 2

Related Questions