15,551 Topics

Member Avatar for
Member Avatar for moroccanplaya

is it possible to copy specificity from a file for example i want to copy x number of bytes from x position to x position?

Member Avatar for Narue
0
94
Member Avatar for zetologos

this code doesnt work, as in it only asks the user for getchar once and putchar once. i tried putting it in two method and it didnt work either. also whether it be char or int it is the same. that leads me to another question. why is it allowed …

Member Avatar for Narue
0
132
Member Avatar for vedro-compota

Hi guys! please tell me - how to determine the length of the input stream without reading simbols ? (for save the input string) thanks in advance ))

Member Avatar for vedro-compota
0
83
Member Avatar for vedro-compota

Hi guys! )) please reply - how to clear the input stream of the console? thanks in advance ))

Member Avatar for vedro-compota
0
193
Member Avatar for eminhanif

I've been having some problems trying to extract the GET variables from URL. This is what the url looks like: www dot example dot com/live/t00/250lo.gif?tr7zt8&uid=4ccc6cd4fc7cc630&CXNID=2000001.5215456080540439072NXC&pub=telegraphmedia&rev=86981&si=4d28ac59f9a3d32e&lc=MDAwMDBFVUdCRU4yMzE4MTgwNDAwMDAwMDBDVg%3D%3D&ln=en&pc=tbx&uf=0&pi=1&dp=www.telegraph.co.uk&fp=news%2Fuknews%2F8248083%2FFather-drowns-while-trying-to-rescue-dogs.html it's a bit long, but basically each variable is separated by an ampersand, so we have, for example: uid=4ccc6cd4fc7cc630&CXNID=2000001.5215456080540439072NXC&pub=telegraphmedia&rev=86981 which translates into: uid=4ccc6cd4fc7cc630 CXNID=2000001.5215456080540439072NXC pub=telegraphmedia …

Member Avatar for vinayakgarg
0
161
Member Avatar for mfaisalm

I am a fresher in C and working in Linux.I created two small programs that can interact with each other. That means both can send strings to other one with in two terminal. I want to interact from two system like IP messenger. How can I make this. Socket? Pls …

0
53
Member Avatar for o0OPatriciaO0o

Hi! This is a real simple and stupid exercise I thought I knew how to handle. The complete heading is: - Write a function in C whose input is a real number and whose output is the absolute value of the input number. The following is the code I've developed. …

Member Avatar for o0OPatriciaO0o
0
236
Member Avatar for 123Faisal

Hi guyz! [B]My name is Faisal Rashid.I am student BCS.Kindly I need your help.Please give solution of following problem as quick as possible.I need this urgent. Thank You I need a solution of Puzzle of from a book "Let Us C by Yashwant kanetkar" and question is from Chapter 8 …

Member Avatar for WaltP
-2
96
Member Avatar for amir malik

hello everyone... m writin a code that will take data frm stdin from user which can b of indefinte size.. but i cant make use of static arrays....and even calloc and malloc is not working properly...what sud i do??? thanks for help...

Member Avatar for amir malik
0
259
Member Avatar for JonaRab

hey everybody can anyone helps me, please? i must program a projekt but i don´t know how i do it. the projekt: Write a program to convert from 12-hour time format to 24-hour time format. The 12- hour format has the form hours:minutes followed by either A, P, AM, or …

Member Avatar for wolfson109
0
277
Member Avatar for thecstudent

Hello to everyone! or should I say, "Hello World"? I am new to C and new to this forum, and this is my first post. I wrote a simple C program which I called: isitprime.c and generated [B]isitprime.exe[/B]. I can call this program [B]isitprime.exe[/B] from the command line with an …

Member Avatar for thecstudent
0
306
Member Avatar for moroccanplaya

my program creates a file then copies a file into the file created then i can copy another file into the file created turning it into one bog file i am having troubles when coming to extracting the exact file, can anyone suggest anything on how about to achieving this.? …

Member Avatar for Narue
0
283
Member Avatar for sidrules1984

int a=10,b; b=(a>=5)?b=100:b=200; printf("%d",b) why does the output shows as 200? Plz explain

Member Avatar for Narue
0
107
Member Avatar for libathos

hi i want to create a program which will be working like a agenta,meaning a user will fill in a form with an action he wants to perform and the time he must do it and my program should pop up a window which will be trigered by his computer's …

Member Avatar for Ancient Dragon
0
259
Member Avatar for NickPatton

#This is a homework assignment# I need to calculate how many seconds old I am in C. I'm thinking that I can take my birthday as user input and convert it to a date with strptime. I then would like to take the present date and put both it and …

Member Avatar for NickPatton
0
230
Member Avatar for nhes2x

Construct a C program that will accept up to 3 digit integer number and display the hundredth's digit, tenth's digit, and one's digit. Example: Enter integer number (maximum of 3) : 143 Hundredth's place : 1 Tenth's place : 4 One's place : 3

Member Avatar for danholding
-1
154
Member Avatar for TomaCukor

hey guys ive made a project in vs2010 that has a hardcoded (int val; val=800000; in main) amount set at start , the amount is 800000 (800k) i gave it an int type , and it works all well but when i try to run it in the anicent turboc …

Member Avatar for Narue
0
133
Member Avatar for udaykrishnag

to find the size of image by knowing the height and width....and by knowing the pixel depth...any solutions plz help.....

Member Avatar for Trentacle
0
40
Member Avatar for moroccanplaya

hi if i copy a copy file into another file does it equal 2 files with 2 eof or does it become 1 file ?

Member Avatar for moroccanplaya
0
80
Member Avatar for lionconqueror

Hi, i am working on a project that involves converting 8-bit hex numbers into integer. Firt, I have to say that my hex number is not a number right now, it is only a bunch of characters. for example: int d; char code[9]; code="FFFFFF01"; d=strtol(code,NULL,16); when I try to printf …

Member Avatar for lionconqueror
0
364
Member Avatar for Ali5152

i am new to programming............i just want to create a linked list program plz check for error for me [code] #include<stdio.h> #include<conio.h> #include<malloc.h> void insertAtEnd(int no); void insertAtBegin(int no); void insertAtPos(int no,int pos); template <span= id="IL_AD" class="IL_AD">Display</span>(); <span id="IL_AD5" class="IL_AD">struct</span> LinkedList { int num; struct LinkedList *next; }; typedef struct …

Member Avatar for NP-complete
-2
385
Member Avatar for malli123

Hi, I need to write a program to open a file in usb mass storage devive(pendrive) without using mount point.I used libusb API to open the device but how to open a file in that without knowing the mount point.Any API functions are there to open text file in that? …

0
54
Member Avatar for Rahuldg

Hello.. i am facing the problem in dynamic allocation to read the data in structure. here is the code. typedef struct { short int fft; short int diff; }symbol; typedef struct { symbol detail; float RE[]; float IMG[]; }receive; fun() { float a[fft_size],b[fft_size]; //here i am allocating the memory for …

Member Avatar for myk45
0
110
Member Avatar for Celtrix

That had a string delimiter that you could specify. It would be quite useful if you guys could help me remember. It might have been fscanf or might have been a c++ function.

Member Avatar for Celtrix
0
97
Member Avatar for moroccanplaya

i get a undefined reference to get_menu_choice error message but i dont know why ? [CODE] int get_menu_choice( void); int main() { //code// while (choice != QUIT) { choice = get_menu_choice(); if (choice == 1) //code// } else if (choice == 2) //code// } if (choice == 3){ puts("you chose …

Member Avatar for gerard4143
0
164
Member Avatar for luke1705

I'm working on a program to score a bowling game. Right now, my terminal says that my program has a seg fault, but I can't tell where. Any other insight on how to help my program do what it's supposed to do would be helpful. I'm still not sure how …

Member Avatar for mfaisalm
0
94
Member Avatar for Chair

Hi, I've been searching all over trying to find an answer to my problem about reading/writing text files. I saw this very old post/code snippet and am wondering if you could help me with my own: How about if I have this input file: 39882 M 7:45 18:16 10 hours …

Member Avatar for vinayakgarg
0
92
Member Avatar for zachman1094

Hey everyone, I've got a question about something called struct tm. I'm not really even sure if it is a string, array, or what, otherwise I would've said that instead of 'something'. I need to know how to use it. I've been searching the internet for the past hour, and …

Member Avatar for Ancient Dragon
0
4K
Member Avatar for fka

I have a problem. I wrote: [CODE] for(i=0; i<n; i++) { m++; char **exP = realloc(exParam, m*sizeof(*exParam)); char **exT = realloc(exText, m*sizeof(*exText)); exParam = exP; exText = exT; explode = strtok(lines[i], "#"); while(explode != NULL) { exParam[m-1] = malloc(strlen(explode+1)); strcpy(exParam[m-1], lines[i]); exText[m-1] = malloc(strlen(explode+1)); strcpy(exText[m-1], explode); explode = strtok(NULL, "#"); …

Member Avatar for Narue
0
175
Member Avatar for jelita31
Member Avatar for Ancient Dragon
0
37

The End.