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.

~10K People Reached
Favorite Tags
Member Avatar for nayefc

Hello, I am creating an iPad app which should have a grid-like view on the first page. Basically, it will have 9 UIImageViews side by side (in a 3x3 box) and each UIImageView drills down to a view by using a UINavigationController. Should I set up three UITableViews side by …

0
87
Member Avatar for nayefc

Hello Everyone, I am trying to emulate a T9 (cellphone) keyboard in C. So lets say a user types in the numbers "23", a possible word combination would be "be". In my question here, I will only write down a part of what I have assuming it only works for …

Member Avatar for L7Sqr
0
206
Member Avatar for nayefc

Hello, I created a linked list and implemented a deep copy function. However, the copied list skips the head node in the source list for some reason. So assume source list contains the following data in their respective nodes: 1 3 6 7 10 312 The copied linked list will …

Member Avatar for nayefc
0
3K
Member Avatar for nayefc

Hello, I am trying to write a program that reverses an array with integers. Here is what I have so far: driver.asm [CODE] # Test driver for reverser.asm # .data tsize: .word 10 tdata: .word 2, 3, 5, 7, 11, 13, 17, 19, 23, 29 .text main: la $a0, tdata …

Member Avatar for nayefc
0
7K