pointer
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2015-09-22 9:24 AM
Posted on September 22, 2015 at 18:24
Hello.
i have this structure definition:(ex)structure example_str{ int a[10]; int b[10];}and a function with this definition:void test(example_str *temp); i want to change the value that pointer temp is locating with out using another variable to define.(not to do like this:example_str test = * temp.test.a[1] = 10 ;)i want to define arrays value directly.I would be very thankful if everybody help me.thank you #pointer
This discussion is locked. Please start a new topic to ask your question.
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2015-09-22 9:37 AM
Posted on September 22, 2015 at 18:37
Not 100% sure of what the question is, let's start with something that makes sense and discuss from there.
typedef struct _example_str {
int a[10];
int b[10];
} example_str;
void test(example_str *temp, int x)
{
temp->a[1] = x;
}
int main(void)
{
example_str foo = { 0 }; // cleared
example_str bar = { 0 }; // cleared
test(&foo, 11);
printf(''%d
'', foo.a[1]);
test(&bar, 22);
printf(''%d
'', bar.a[1]);
while(1);
return(0);
}
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2015-09-22 9:40 AM
Posted on September 22, 2015 at 18:40
Or are you looking to do this?
example_str foo = { {1, 2, 3}, {4, 5, 6} };
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2015-09-22 10:46 PM
Posted on September 23, 2015 at 07:46
Thank you Clive. In this post you answer me clearly and problem solved.
thank you again..