Friday, July 31, 2009

Please gimme link to c and c++ compiler, interpretter. free one plz. google was not real helpful......?

i think download.com may be helpful to you

Please gimme link to c and c++ compiler, interpretter. free one plz. google was not real helpful......?
i presume you wish to have a compiler for a windows system:


try GNU compiler, either MinGW


http://www.mingw.org


or an older alternative for DOS (but it works well on windows) http://www.delorie.com/djgpp/





i've used them both but currently i use intel C++ compiler which is unfortunately not free (except the windows noncommercial version)


In which language is C and C++ compiler written?

The C++ compiler by Microsoft was written in C, and the C compiler by Borland was written in... (drum suspense...), C itself!





BluEyes.

In which language is C and C++ compiler written?
The first assemble compiler in the world was written in machine code by a man.
Reply:Normally C and C++ now. A complier is nothing more then a program that converts the programming code in a text file into Assembly.

magnolia

Can anybody tell me about c programing?

anybody can help me to find an article about one of c programming below, please send it to my yahoo mail.%26lt;gigayus86@yahoo.com%26gt;.


1.Cluster and Grid programming


2.C - Compiler architecture


3.Data structure and algorithm


4.Programming for engineers





anybody who know all about topic above,please send to my email.or if anyone know where can i find it,you can just give me the website that contain all topic above.

Can anybody tell me about c programing?
Do a search for 'C language tutorials' works for me. However if you have a choice go on to C++ even better


How do i compile a C Programme?

Hi, i have written a program in C language and was just wondering where and how do i compile it. do i need a program that will compile the code for me??





i have written the program in Microsoft NotePad, and have no C compiler programs on my computer. Any idea how i can compile this??





many thanks

How do i compile a C Programme?
Depending on your level of expertise, I suggest downloading something from here:





http://www.thefreecountry.com/compilers/...





Also, instead of using notepad, I suggest downloading textpad (www.textpad.com). It does a great job for a text editor. If you read into it, you can also set it up to compile your C programs (or Java and more). Of course, you have to download the compiler first.





Most of the compilers from the list above will show or explain how to set up your computer for C compiling.





Good luck!!!
Reply:Let see, C compiler read only those files which is saved by .C or .Cpp extension. so create a file in Turbo c Or in TC. And compile. Ok Bye Have a nice time.
Reply:try these





http://ailab.hanyang.ac.kr/~ktkim/downlo...





or





http://www.tclite.fsnet.co.uk/


My turbo c graphics is not working in vista...b cuz vista doesnt suppport command prompt in full screen...?

is there an an turbo c compiler which doesnot require full screen mode for graphics

My turbo c graphics is not working in vista...b cuz vista doesnt suppport command prompt in full screen...?
yer i know command prompt don't support full screen in vista.. I dunno why, maybe theres an option u can switch in there, not go into it yet..





how about using crimson editor ? and just link the compiler options to that =)





www.crimsoneditor.com





I use it to make commodore 64 asm in, and it supports C and html also =)





or how about using linux instead.. using GCC etc.





just get a distro of linux maybe , they all include dev tools.





there are loads of c compilers about, some with IDE's in





http://www.thefreecountry.com/compilers/...


Dll help pls(error in c++ code)?

ok here is the dll





#include %26lt;windows.h%26gt;


#include %26lt;stdio.h%26gt;


#include %26lt;stdlib.h%26gt;


#include "stealth.h"





DWORD dwThreadID = 0;





void MainLoop()


{


while(1)


{








Sleep(10);


}





}








BOOL APIENTRY DllMain( HANDLE hModule,


DWORD ul_reason_for_call,


LPVOID lpReserved


)


{


if(ul_reason_for_call==DLL_PROCESS_AT...


{





loadDriver("\\0001.sys",true,"0001",... Driver");


CreateThread(NULL,0,(LPTHREAD_START_... %26lt;-------


if(unlinkThread((int)dwThreadID) != 1)


{


MessageBox(0,"Invalid Operating System Detected!","Error",MB_ICONERROR);


ExitProcess(0);


return FALSE;


}





return TRUE;


}


return TRUE;


}





im using dev-c++ compiler





and im getting an error on this line


so can someone help me fix this

Dll help pls(error in c++ code)?
The problem is the signature of MainLoop. If you write MainLoop properly, you won't need the (LPTHREAD_START_ROUTINE) cast.





The thread function needs to take a pointer to void and return a DWORD.





It should look like this:


DWORD MainLoop (void * pdata)





When using function pointers, having the correct signature is required. Anything else will cause crazy errors. Feel lucky you got a compiler error. If you got it to compile, the runtime errors would be very hard to diagnose.





The pdata parameter allows you to pass context data to the thread, this way you can start off different threads with different data.

forsythia

Where can I download a free C compiler for my Mac?

I have a Mac OSX operating system.

Where can I download a free C compiler for my Mac?
http://sdcc.sourceforge.net/