- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
this is my program: there are 2 problems : 1. i am not allowed to use atoi 2. there is a compilation error this is my code : #include <stdio.h> #include <stdlib.h> typedef struct companyStatus{ double balance; FILE *invF, *errF;}companyStatus; void printWord(FILE* file); FILE* openFile(char* name); char* getNextWord(FILE *file); char … | |
i have already posted here about my linked list facebook program and i have anoter problem with the function : void cancelFriends(int id1, int id2, PersonList* allPersons) here is the structs again : typedef struct Person { int id; char* name; struct PersonList* friends; } Person; typedef struct PersonList { … | |
irealy dont know how to sort my liked list . i should sort it by friends and by name . please try to help me...... i dont know even how to start. here is my structs : [code] typedef struct Person { int id; char* name; struct PersonList* friends; } … | |
i have an assignment: Write a recursive function that will compute the value of a representation of a number in given base. int base(char num[], int radix); For example, calling the function as base("1011", 2) should return 11, but calling it as base("1011", 10) should return 1011. i need to … | |
hi all! i need to write a recursive function that checks whether a given sentence is a palindrome by using this function: int isPalindrome(char word[]); i need to define a helper recursive function with extra parameters, and write isPalindrome as a wrapper function. the helper function is : int isPalindromeHelper(char … |
The End.