Click here to Skip to main content
15,887,775 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 15:44
venkat swaminathan20-Nov-14 15:44 
AnswerRe: DLL creation process in windows application with CEN XFS Pin
Richard Andrew x6420-Nov-14 15:57
professionalRichard Andrew x6420-Nov-14 15:57 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 16:07
venkat swaminathan20-Nov-14 16:07 
AnswerRe: DLL creation process in windows application with CEN XFS Pin
Richard Andrew x6420-Nov-14 16:16
professionalRichard Andrew x6420-Nov-14 16:16 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 16:28
venkat swaminathan20-Nov-14 16:28 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
Richard Andrew x6420-Nov-14 16:34
professionalRichard Andrew x6420-Nov-14 16:34 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 16:29
venkat swaminathan20-Nov-14 16:29 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
Richard Andrew x6420-Nov-14 16:37
professionalRichard Andrew x6420-Nov-14 16:37 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 16:40
venkat swaminathan20-Nov-14 16:40 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
Richard Andrew x6420-Nov-14 16:45
professionalRichard Andrew x6420-Nov-14 16:45 
GeneralRe: DLL creation process in windows application with CEN XFS Pin
venkat swaminathan20-Nov-14 16:59
venkat swaminathan20-Nov-14 16:59 
GeneralEdit Control Problem Pin
Member 1114570919-Nov-14 14:12
Member 1114570919-Nov-14 14:12 
SuggestionRe: Edit Control Problem Pin
David Crow19-Nov-14 17:09
David Crow19-Nov-14 17:09 
GeneralRe: Edit Control Problem Pin
Member 1114570919-Nov-14 18:16
Member 1114570919-Nov-14 18:16 
QuestionOffice automation help Pin
Hadi Dayvary17-Nov-14 3:30
professionalHadi Dayvary17-Nov-14 3:30 
AnswerRe: Office automation help Pin
David Crow17-Nov-14 5:56
David Crow17-Nov-14 5:56 
GeneralRe: Office automation help Pin
Hadi Dayvary19-Nov-14 3:37
professionalHadi Dayvary19-Nov-14 3:37 
GeneralRe: Office automation help Pin
David Crow19-Nov-14 3:58
David Crow19-Nov-14 3:58 
Questionreserve string in c Pin
Mortadda jafar16-Nov-14 5:53
Mortadda jafar16-Nov-14 5:53 
AnswerRe: reserve string in c Pin
Condoriano Condoriano16-Nov-14 12:21
Condoriano Condoriano16-Nov-14 12:21 
GeneralRe: reserve string in c Pin
Mortadda jafar16-Nov-14 23:06
Mortadda jafar16-Nov-14 23:06 
GeneralRe: reserve string in c Pin
Richard MacCutchan16-Nov-14 23:44
mveRichard MacCutchan16-Nov-14 23:44 
Questionplz solution this programe???????????? Pin
Member 1123778816-Nov-14 3:08
Member 1123778816-Nov-14 3:08 
. Create a List [ Create a list that will be empty at the creation time. Make void create( void ) function to achieve this task. ]

2. Determine whether the list is empty. [ Make bool empty( void ) function that shows whether the list is empty or not.]

3. Insert a Value

at the start of the list [ Make void addatstart( int ) function to insert value at the start of the list.]
at the given location [ Make void addatspecific( int, int ) function to insert value at the specific location in the list.]
at the end of the list [ Make void addatend( int ) function to insert value at the end of the list.]

4. Delete

at the start of the list [ Make void deleteatstart( void ) function to delete value from the start of the list.]
at the given location [ Make void deleteatspeific(void) function to delete value at the specific location of the list.]
at the end of the list [ Make void deleteatend(void) function to delete value at the end of the list.]

5. Size of the List [ Make int size(void) function that will return the size of the list.]

6. Search value from the list. [ Make void search( int ) function that will search the given value in list.]

7. Swapping two values of the list. [ Make void swap( int first_location, int second_location ) function that will swap the values at the given location from the list.]

8. Display the list [ Make void search(void) function that will display the list values.]
GeneralRe: plz solution this programe???????????? PinPopular
Richard MacCutchan16-Nov-14 3:43
mveRichard MacCutchan16-Nov-14 3:43 
GeneralRe: plz solution this programe???????????? Pin
David Crow17-Nov-14 5:58
David Crow17-Nov-14 5:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.