GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

C Programming Language

Welcome to the C Programming Language forum.

Browse through the links below to find existing C Programming Language discussions - including source code examples, hints, tips, and tutorials. Example codes are syntax highlighted for your convenience.

If you have just registered or if this is your first time here, and if you wish to include example C code in your posts and messages, please paste them between [cpp] and [/cpp] bbcode tags. This will syntax highlight your C code examples within a post. Please refer to the details here. Also see: C++.

Post New Thread
Threads in Forum : C Programming Language Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order 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 Go to last post
3 7,921
Smile
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...
10-Mar-2012 06:26
by medeterranian Go to last post
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>
07-Mar-2012 03:14
by Mexican Bob Go to last post
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...
02-Mar-2012 16:16
by davekw7x Go to last post
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...
28-Feb-2012 08:02
by davekw7x Go to last post
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...
26-Feb-2012 07:41
by TanLorik Go to last post
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...
24-Feb-2012 15:10
by Howard_L Go to last post
4 438
 
by june_C21
Does anyone know how to write median filter in C programming? thanks
22-Feb-2012 07:37
by davekw7x Go to last post
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...
18-Feb-2012 01:59
by sferreira1979 Go to last post
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...
10-Feb-2012 10:00
by sferreira1979 Go to last post
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...
06-Feb-2012 02:54
by Rutvij Go to last post
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 Go to last post
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) {
02-Feb-2012 15:31
by davekw7x Go to last post
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...
23-Jan-2012 16:47
by dgsmith_50 Go to last post
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...
19-Jan-2012 12:10
by davekw7x Go to last post
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...
16-Jan-2012 22:10
by Mexican Bob Go to last post
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...
13-Jan-2012 16:27
by Mexican Bob Go to last post
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 ;
05-Jan-2012 08:39
by giolac Go to last post
2 385
Exclamation
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 &...
04-Jan-2012 18:05
by ahbi82 Go to last post
24 1,520
 
gcc
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.
30-Dec-2011 10:25
by davekw7x Go to last post
1 280
 
by arsymizz
what is the use of the ## operator in C programming.
30-Dec-2011 09:20
by arsymizz Go to last post
2 211
Post New Thread

Recent GIDBlogCompress Your Web Site by gidnetwork

Display Options Moderators
Showing threads 81 to 100 of 2962 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDApp · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 11:15.


vBulletin, Copyright © 2000 - 2013, Jelsoft Enterprises Ltd.