| |
Rating
Thread /
Thread Starter
|
Last Post  |
Replies |
Views |
|
|
by WaltP
Guidelines for Posting Requests for Help
version 3.1
GIDForums is pleased to provide these forums to help you understand programming techniques and correct programming problems. Following these guidelines will help you post good questions with enough information that we can understand your...
|
11-Oct-2012 08:35
by WaltP
|
3 |
7,921 |
|
 |
by medeterranian
Hi folks,
I am new to the C programming world , I just need your help to write a simple source code that does the following:
- Write a huge amount of data in a file (the type of data does not matter, it could be only "0"s or "FF"s for example ).
- Read again this file
-measure the speed of READING...
|
|
12 |
741 |
|
|
by alimujtaba786
Write a program that
a. Prints starting address of the program alongwith the contents of each byte in ASCII with increment of 1 up to 65535 (in a file).
b. Identfy program segments.
c. Save the file on HDD.
=================================================
#include <stdio.h>
|
|
1 |
302 |
|
|
by harami
how do you write a code in C language for push buttons. im using two push buttons as an input to pic18f452. push buttons will be pressed one after another. and when push button A is pressed followed by push button B, number will increment and if button B is pressed followed by button A number will...
|
|
4 |
922 |
|
|
by utchia
i am trying to convert my code into assembly code, and all i can find on google is at&t syntax, and its super annoying!!!
but i need to figure out how to convert this into the 68000 motorola assembly code, anything will help, i am also stuck on how to declare my parameters.
int foo(int n, int...
|
|
1 |
620 |
|
|
by TanLorik
hi, I currently have to sort some files based on information found in the .rsrc sections and I have to use a certain API for that, but that API doesn't close the handles on the files it extracts the information from, therefor I can't move the actual files because due to ERROR_SHARING_VIOLATION.
is...
|
|
0 |
302 |
|
|
by Howard_L
Hi, I'm trying to write a program to handle base64 decoding or encoding.
I have a question about an endianess situation and whether I am on the right track to accommodating it.
I am using fedora16 64 bit linux on VirtualBox Win7 host on an AMD Brazio Dualcore.
The VM processor is the same.
I wrote...
|
|
4 |
438 |
|
|
by june_C21
Does anyone know how to write median filter in C programming? thanks
|
|
6 |
12,397 |
|
|
by sferreira1979
Hi....
i'm creating a checker game in c# i have a board class, a checker class, a player class... i have create a List<Checker> BlackList and List <Checker> WhiteList in Board Class but i don't know how to place checkers in board and howto associate the WhiteList to Player 1 and the BlackList to...
|
|
0 |
322 |
|
|
by sferreira1979
Hello all,
I'm Silvia Ferreira, to attend the Bachelor's Degree in Computer Engineering from the University of Tras-os-Montes and Alto Douro, and within a proposed work on Methodologies Course Schedule III, would like to participate in this discussion forum / community practice.
May someone help...
|
|
4 |
399 |
|
|
by ruby_booby
after getting such great help last time, im back for some more :D
I am trying to create a solution to this problem, if you are not familiar with it i have found an explaination online:
http://www.ocf.berkeley.edu/~wwu/riddles/hard.shtml
it is the third puzzle down called "CIRCULAR JAIL...
|
|
7 |
3,093 |
|
|
by Sarge
Hi, I'm having a bit of trouble including headers from Windows Driver Kit to Visual Studio 2010. Can anyone help me, what I am doing wrong?
VC++ Directoy settings:
http://i43.tinypic.com/2czkna.png
#include "stdafx.h"
#include <Winsock2.h>
|
02-Feb-2012 17:07
by Sarge
|
1 |
670 |
|
|
by krishna_nani
The 0th row elements are not getting passed correctly to the max_repeat function but all others are getting passed correctly
#include<stdio.h>
#include<string.h>
#define MAX1 100
#define MAX2 10000
max_repeat(int *a,int n)
{
|
|
1 |
266 |
|
|
by dgsmith_50
I work on a project where the source code supports many different hw platforms and many features. The code below is an example. If my project does not use most of these compile switches, I want to see only the code which applies. The desired file would not be used to build an executable, it would...
|
|
2 |
521 |
|
|
by phojo
i'm just starting c with a simple "hello world" program. I wrote and compiled the program using "lcc-win32" and am trying to execute it using bash. Bash returns "syntax error near unexpected token `(' ". I'm on a windows computer.
I know this is probably a really silly problem, but if you...
|
|
1 |
1,002 |
|
|
by rschirin
Hi, i'm trying to create a proxy that both works as client and server; it connect clients which want files from a unique server. the point is that between the proxy and the server must exist almost 5 connections.
so, client #1........ok
client #2...........ok
client #3..........ok
client...
|
|
1 |
209 |
|
|
by rschirin
hi, if I use select syscall with different fd_set(for example readfd_set and writefd_set) how it does change fd_set after return?
for example:
readfd_set {3,5,7} writefd_set{1,2}
if select(max, readfd_set, writefd_set, null,null) returns because fd(3) is ready, writefd_set will be modified...
|
|
3 |
281 |
|
|
by giolac
I have a problem with "qsort" function included in the <stdlib.h> !
# include <stdio.h>
# include <stdlib.h>
int numcomp(int*, int*);
struct a {
int s ;
|
|
2 |
385 |
|
 |
by seoneo
CPU Scheduler Simulator
Objectives:
Your project is to write a program that simulates the service of jobs (process) by the
CPU of a multi-user computer.
Inputs should be taken from text file with command arguments. And results also
should be written to output file and screen.
Recommendations &...
|
|
24 |
1,520 |
|
|
by arsymizz
Where should I use
$ gcc main.c -o extern
or more commands like this.
I use eclipse to write codes, I don't understand where should I use it.
|
|
1 |
280 |
|
|
by arsymizz
what is the use of the ## operator in C programming.
|
|
2 |
211 |