15,548 Topics

Member Avatar for
Member Avatar for n.cramp

Hi all, Having a little trouble with assigning values to an array within a C struct. Unfortunately i cannot assign a size to the array as i am reading values to an array to be stored, and the size is relative to the other values in the struct passed to …

Member Avatar for n.cramp
0
3K
Member Avatar for hwoarang69

how do you insert in linked list. this is that i have. struct node { int data; struct node *next; }; struct node *head; void insert(struct node*, char*, int); int main() { int data; struct node *List_A = NULL; insert(&List_A, %data); return 0; } void insert(struct List_A, int data) { …

Member Avatar for hwoarang69
0
92
Member Avatar for Erushima

I was trying to assign values from a txt file to my program with the following code: #include<stdio.h> #include<conio.h> #include<string.h> int main() { float c1, c2, c3, c4, c5, c6, c7, c8; char d1[4], d2[4], d3[4], d4[4], d5[4], d6[4], d7[4], d8[4]; FILE *rate; rate=fopen("rates.txt", "r+"); fscanf(rate, "%s%f%s%f%s%f%s%f%s%f%s%f%s%f%s%f", &d1, &c1, &d2, …

Member Avatar for nullptr
0
170
Member Avatar for wzseow

Can someone guide me how can I use scanf for a structure? [CODE]const int IDLEN = 30; const int POLARITYLEN = 3; const int MAXSTOCKITEMS = 10; struct TransistorRec { char manufacturersID[IDLEN]; char polarity[POLARITYLEN]; float power; float gain; int stock; }; typedef struct TransistorRec Transistor; struct StockRec{ int size; Transistor …

Member Avatar for zeroliken
0
20K
Member Avatar for Erushima

Can someone help me make a code for a username and password program where the usernameand pass is stored in a txt file. I've tried many things but I still can't make it work. The text file in question has the username password and user type separated by tabs and …

Member Avatar for Erushima
0
148
Member Avatar for shean1488

Help me please to find the problem in my code: Here is the error that I'm getting: serg@serg-PORTEGE-Z835:~/c$ gcc string_finder.c -o string_finder string_finder.c:4:5: error: conflicting types for ‘getline’ /usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here string_finder.c:22:5: error: conflicting types for ‘getline’ /usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here …

Member Avatar for tubby123
0
268
Member Avatar for tomtetlaw

I'm looking for feedback on my code. I wrote a custom memory allocator (out of pure boredom) that is faster than the STD one (malloc, free). It's pretty simple in the way it works, it has a base block of memory which is where everything is allocated from, and it …

0
74
Member Avatar for idiotguy

Hi friends! I'm new to libcurl programming in C. I cant find any libcurl tutorial on the web.Also i tried [the official one](http://curl.haxx.se/libcurl/c/) but i cant understand it because its not elaborate. So please help me with the tutorials/resources on libcurl programming in C. Thank you.

Member Avatar for Ancient Dragon
0
151
Member Avatar for kase20

hi guys!! The purpose of the program I am trying to do is to have an input number of 6 digits typed in and this should then be printed as an hour minute second format. for example 123456 would be 12:34:56 This is what I have but it isn't working …

Member Avatar for Ancient Dragon
0
106
Member Avatar for gourav1

actually, i don't know where to post this thread. but i know the people available on daniweb.com have much knowledge. will you please tell me that how to start writing proposal. i have spend 2 full days on PC reading about G-SOC but still i am not getting how to …

Member Avatar for gourav1
0
329
Member Avatar for hwoarang69

les say we have a binary file. and 1st letter is 3. how do i take 3 and put it into a char ar[]. what i did was if(fread(ar, 1, 1, fine)) { }

Member Avatar for Ancient Dragon
0
113
Member Avatar for luislupe

The problem I have and can't understand is that I receive a segfault when trying to close the second file (fclose(ofp)). Input file is a xml file that will generate food for output file. At present time, input file is being read for parsing but no output for outfile is …

Member Avatar for Ancient Dragon
0
2K
Member Avatar for gourav1

actually, i want to calculate 2^60000 in 1 second. i have tried a way but it is giving output in specified time for 1000 power only.(i have used arrays to store a one integer). will you please give me a hint only how to do that ? [B][I][U]"I AM NOT …

Member Avatar for TrustyTony
0
1K
Member Avatar for tubby123

Why is it that this won't work instead of using atoi ? `Inline Code Example Here` #include<stdio.h> int main(void) { printf("%d",(int)"10"); return 0; }

Member Avatar for Ancient Dragon
0
73
Member Avatar for hwoarang69

char *ar[5]; //Array of pointers let say char * ar[5] contain: ar[0] = "cat"; ar[1] = "desk"; ar[2] = "desk" ar[3] = "zoo"; ar[4] = "cat"; how i want to get of any same strings. so in end ar should have the value "cat","desk","zoo". this is what i have so …

Member Avatar for hwoarang69
0
114
Member Avatar for JamesGreen

I am working on a recursive flood-fill function with 4-connected neighbours as part of a drawing application program. However, my attempts keep resulting in the program crashing. I am coding in C, however I will just post pseudo-code of my algorithm. I am hoping somebody can help me see what …

Member Avatar for Banfa
0
160
Member Avatar for tischn

hi, i have a small problem with my program: int main(int argc, char *argv[]) { int ende; int modus; short x; short y; mkdir("maps"); while(1==1) { cls(); //some printf's char enter=0; while (enter != '\r' && enter != '\n') { enter = getchar(); } system("cls"); ende=0; modus=0; //some printf's scanf("%d",&modus);fflush(stdin); …

Member Avatar for tischn
0
1K
Member Avatar for minghags

hello, i wanna ask if somebody can help me with this problem. First code: #include <stdio.h> #include <stdlib.h> int main(int argc, char* argv[]){ if(argc>1) { int i=1, zmnozek=1; zmnozek=atoi(argv[1]); for(i=1; i<argc; i++) { zmnozek*=atoi(argv[i]); }; printf("Rezultat: %d\n",zmnozek); }else { printf("Nepravilen vnos!\n"); }; return 0; } And there is the problem: …

Member Avatar for minghags
0
119
Member Avatar for Ben464

Can someone please answer this for me as i cant do this practice question Thank You. ![Untitled56](/attachments/large/3/Untitled56.png "Untitled56")

Member Avatar for Ancient Dragon
0
43
Member Avatar for balajirs

I have been trying to explore the source code of the getcontext() and setcontext functions but I have not been able to spot the right file or resource. Any help in this regard will be helpful. I was able to trace to http://fossies.org/dox/glibc-2.14.1/setcontext_8c_source.html but there is no info

Member Avatar for balajirs
0
221
Member Avatar for doma18

[CODE] #include <iostream> #include <string.h> #include <ctype.h> using namespace std; void RemoveSpaces (char *str); void Removevowels (char *str); int main() { system("Color 1A"); char myString[300]; char clear[300]; char cipher[300]; int selection; int x = 0; int i = 0; int opt; cout<<"Enter a string!"<<endl; cin.ignore(); cin.getline(myString,sizeof(myString)); cout<<"Plase select what you …

Member Avatar for doma18
0
140
Member Avatar for gemni7
Member Avatar for sujeeth.ramesh
0
671
Member Avatar for jumbowat

Hi, I want to know what is meant by a code footprint. I tried googling but all of them have explanations that I was really not able to understand. Can anyone please tell me what is means? How is it important and how can it be used(if at all it …

Member Avatar for BobS0327
0
1K
Member Avatar for TarkiB

Hi there, I've been learning C lately, and in one of the exercises I've encountered a bit of a frustrating issue. The exercise is to accept a string of characters that are answers to a multiple choice quiz, and then compare them to the correct answers which are in another …

Member Avatar for TarkiB
0
217
Member Avatar for tubby123

Hey, how do you declare an array of strings using double pointer ? I normally use [CODE]char* str[] = {"this", "works", "fine" ,"for", "me"}; [/CODE] But I want to know if there is a way of declaring array of strings using something like [CODE]char** str; [/CODE] Please show me how …

Member Avatar for luisvaldes88
0
231
Member Avatar for Kashaku

Hi. Sooner or later I had to go into the depths of C. Today was the day I tried my first things with C. However, I am having a problem although I do not know what actually causes it. The goal of the pogram is to combine the parameters into …

Member Avatar for Kashaku
0
154
Member Avatar for DJXiej

Here's a small snippet from my code. Following a Knuth Shuffle model in the Shuffle function, I get 6 Pointer Expected errors in line 15, but I'm sure its really 2 due to the SWAP function in the header. Now the two things I'm swapping are a random index and …

Member Avatar for histrungalot
0
446
Member Avatar for CelestialTeapot

Hi, I am trying to create a simple program to rename a bunch of files #include <stdio.h> int main(){ int count; for(count = 1; count <= 95; count++){ if(count >= 10){ system("rename \"C:\\wamp\\www\\anime\\kenshin\\Rurouni Kenshin - %d.mkv\" \"%d.mkv\"", count, count); } /* For the episodes that have 0 before the number …

Member Avatar for CelestialTeapot
0
151
Member Avatar for CKShia

Hi I am new in C programming language... I am writing a simple FTP Server-Client program, and I want to print out the client IP address for each successful login. Here's the code that I encountered warning: `struct sockaddr_in ser_addr;` `printf("IP: (%s); Port: (%d)\n",` `inet_ntoa(ser_addr.sin_addr), ntohs(ser_addr.sin_port));` When I compile the …

Member Avatar for PieterBeyens
0
190
Member Avatar for Sean Raina

Can some one help me write a c program for my "Internal Assessment" at school? Its a program that should be over 5oo lines but I need your help urgently. The dead line is two days from now. If your interested, email me at "seanraina@yahoo.com", where I will give you …

Member Avatar for bumsfeld
0
55

The End.