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
Ranked #4K
~872 People Reached
Favorite Forums
Favorite Tags
c x 7
Member Avatar for coolguy_003

Hi, I did the stack implementation using arrays and i would like to do it with function pointers but i have no idea. If anyone could help by illustration that would be great as function pointers is pretty difficult for me! Thanks in advance. coolguy

Member Avatar for anonymous alias
0
258
Member Avatar for praneeth_gunda
Re: Crc

Hey, Some one Please help in Completing this code of CRC [code=c] char* substr(char* pra,int strt,int end)//To Evaluate Substring { char pr[5]="\0"; int j,k; for(j=strt,k=0;j<=end&&k<5;j++,k++) pr[k]=pra[j]; return pr; } char* exor(char* pra,char* div)//To Evaluate Mod2 Operation { char out[5]="\0"; int i; for(i=0;i<strlen(pra);i++) { if(pra[i]==div[i]) out[i]='0'; else out[i]='1'; } return out; …

Member Avatar for Aia
0
264
Member Avatar for bobs360

I am a beginner in computers, i would like to be assisted in writing a simple program that inputs a fraction in the form of a/b and c/d and culculates the sum and returns the answer in the simlest form as in p/q. Notes do not allow zero as the …

Member Avatar for ~s.o.s~
0
316
Member Avatar for bobs360

Greetings, My sincere thanks and gratitude to daniweb community. I am Badar Ahmed from Kenya, a lawyer and currently persuing a Masters in Computer Based Information system at Strathmore University. I am so happy to be a member of your team and I look forward to your maximum co-operation and …

Member Avatar for joshSCH
0
34