Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for finders

**Program:** #include <stdio.h> int main(){ int array[5] = { 0,1,2,3,4} ; int * p1, **p2 ; int * parray[2] = { NULL , NULL }; p1= & array[2] ; *p1 = 20 ; p2 = & p1 ; ** p2 = 30 ; parray[0] = & array[0]; parray[1] = & …

Member Avatar for L7Sqr
0
92
Member Avatar for finders

I'm working on a rolling dice program. The rules are below. I'm not sure how to **reassign** a value. For example, a value of 1 and 2, would equal 1; a value of 3 and 4, would equal 2; and a value of 5 and 6, would equal 3. The …

Member Avatar for Hiroshe
0
137
Member Avatar for finders

Hey, I have never programmed before, so everything is very confusing for me. I was given an assignment to change binary to a decimal number. Not very much information was given to me. I am NOT looking for an answer, but I definitely am looking for some help as to …

Member Avatar for CGSMCMLXXV
0
790