Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~593 People Reached
Favorite Tags
Member Avatar for arafat_alam
Member Avatar for arafat_alam

this is my code for a simple link list...i cant solve the problem of the while loop.it is only working for "1".and i cant swap two nodes in the list and cant insert nodes in a given position...how can i do those???plz help....[CODE]//Pirateā„¢ #include<stdio.h> #include<string.h> #include<stdlib.h> struct list_element { char …

Member Avatar for Ancient Dragon
0
206
Member Avatar for arafat_alam

sir i have no idea about the graphical work in c...bt i want to learn those things...how can i learn?????plz show me some way..

Member Avatar for Salem
0
88
Member Avatar for manjaro

I want to print each first character of a List of Array in upper case using C. For example, if I have Array of these elements char *d[] = {"water", "salt", "sugar", "milk", "soda"}; I want my function to print them like this Water Salt Sugar Milk Soda I will …

Member Avatar for arafat_alam
0
107
Member Avatar for arafat_alam

i am facing problems of destructor in the following code.destructor is not working.can any one help plz???? [CODE] #include<iostream> #include<cstring> #include<cstdlib> using namespace std; class strtype { private: char *p; int len; public: strtype() { p=(char *)malloc(sizeof(char)); *p='\0'; len=0; } void getString(char *str) { len=strlen(str); p=(char *)realloc(p,sizeof(char)*len); strcpy(p,str); } void …

Member Avatar for arafat_alam
0
128