C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Tools And Utilities
Remove
Platform
Any
License
Any
As per the dis-assembly in the 1st for loop, an additional instruction is required to set the flag if index has reached the 'num' value. Where as in the 2nd for loop, the index can be directly...
char a[] = "hello world";
you can that because the compiler knows how much space to allocate for the string "hello world."
char a[];
a = "hello world";
C won't allow aggregate assignment;...
I do not understand your question "in which language compilers are written?". Compilers are EXE files - they can be written in any language. There is no connection between language compiler is...
hi all, if someone has the compiler (Borland) , and can try this three lines of C code in it and till me the result , i'll be very thankful !! the three lines are:
char a ="ball" ;
char b ="zoo";...
You need a good debugger for this. IDA PRO comes to mind, but it cost money. Try to get a trial version - it may work for 30 days or so. Best free debuffer for Win32 is OLLYDBG. Google for it and get...
Hello everyone,
These days I am going to make a program to analyze the mac protocol packets. Also my paper title is related to packet analysis. I wrote some survey papers and this paper also will...
I have a Matlab file contain a thread 'mex -O SegSegForces.c'. Since there is a file with extension c so I wonder what should I do if I want to run this program? I have MicroSoft Visual Studio...
Hi guys,
I've read about Virtual Com Port (VCP) on the LM3S3748 and was wondering how this can be used to output keyboard strokes and write to video memory in a PC running windows/dos. I'm...
make it a cgi file
if you are on linux here's a library you can use
http://www.yolinux.com/TUTORIALS/LinuxTutorialC++CGI.html
if you are on windows here's a little tutorial:...
plz look what i have tried in GNUCCC and tiny C compilers and failed but SUCCESSED in turbo-c 3.0 :D . plz explain why inp() out() doesnt work in new compilers and works fine in old compilers....
the trick is: '%' operator. 10%4=2 , 10%5=0 ,10%6=4 , 10%7=3
10%8=2, 10%9=1 , i havent tried 10%10 :D but it should be like : (123 people)%(8 people per boat)=(3 remaining people on extra...
This is really for those Visual C++ 6.0 programmers out there.
I have a workspace which builds 3 apps & dozen of DLLs. Each project has it's own resources (resource.h & corresponding RC file)....
Hi I am completely new to embedded C programming. In college I have being given the task of programming a pic 18f4620 to switch an LED on and off, simple as that. I really have no clue where to...
hi to all.. please help me.. i'm just a new member here in the forum.
i hope anyone can help me.
I am interested in turbo c,, i just learned simple codes by reading in some books.. i've got a...
Let there be an executable file say, t1.exe. If I run t1.exe then it shall copy itself to a new executable file say t2.exe.
Code:
#include
#include
#include
void main()
{
FILE *fp...
but answer is given that 2nd loop is fast..i don't why there is some condition given regarding flags..
Technically speaking these for loops will NOT do the same work, because index has different values (i will never be EQUAL to num in loop #1, but in loop $2 it WILL). The performance in FOR() part...
which one is faster
1. for(i=0;i0;i--)
assume that no code optimization and microprocessor has flags
Hello fellow c programmers( I made a "hello world" program so I'm a c programmer too :)).
Anyway I want to know if there is anyway to make a Dev C program perform an action if it is a certain day...
ServerSupportFunction(ecb, HSE_REQ_SEND_RESPONSE_HEADER, NULL, &dwSize, (unsigned long *)(char*)dicstr.c_str());
Any idea why its happen when i added a custom header?
Thanks in advance,...