Questions tagged [pelles-c]

Pelles C is a lightweight freeware integrated development environment for Windows and Pocket PC programming in the C language.

Pelles C is a complete development kit for Windows (and Windows Mobile, but this platform is fading away). It contains among other things an optimizing C compiler, a macro assembler, a linker, a resource compiler, a message compiler, a code signing utility, a make utility and an install builder.

It also contains an integrated development environment (IDE) with project management, debugger, profiler, source code editor, and resource editors for dialogs, menus, string tables, accelerator tables, bitmaps, icons, cursors, animated cursors, animation videos (AVI's without sound), versions and XP manifests.

The compiler is originally based on LCC (by Chris Fraser and David Hanson), but since then enhanced with support for C99 and C11, a global optimizer, a new register allocator, a function inliner, intrinsic functions, and many Microsoft C extensions.

The install builder for Windows is originally based on NSIS from Nullsoft.

Reference: The Official Website

23 questions
-1
votes
1 answer

Find where program is stuck C

I have been writing a program for multi-element diffusion. Because the method I am using is poorly optimized in MatLab, I have been programming in C, as that is fast for my purpose. I am, however, much more an engineer than a programmer. The model…
Kvaestr
  • 77
  • 6
-1
votes
1 answer

Why my empty program has too many unused imports?

I'm working with Visual Studio 2012 & 2017 with C++ 11 and Pelles C 9.0 with C++ 11... When I build a empty program and DLL but they contain lots of unused imports in pe file! VC++ has 26 imports of KERNEL32 and Pelles has 70 imports of KERNEL32 My…
Dr.CSharp
  • 23
  • 1
  • 6
-1
votes
1 answer

Functions Trigger POLINK Error in Pelles C

I have a simple program (program.c) that I am compiling with Pelles C: #include void main() { char buffer[256]; GetKeyboardState(buffer); } When I try to compile this program, after enabling Microsoft Extensions, it…
wizzwizz4
  • 6,140
  • 2
  • 26
  • 62
-1
votes
2 answers

Cannot compile program on Pelles C

I am very new to C programming.Can you please let me know where my error is and why is that so? With the program on (Pelles C) given below Im finding an error viz. POLINK: fatal error: Access is denied. *** Error code: 1…
user53119
  • 11
  • 1
  • 3
-1
votes
2 answers

Can the stringize macro be used here?

Using Pelles C I would like to show or log an unsigned char array. Is it possible to use the stringize macro to show the whole array as hex values instead of iterating through the array with printf(%x)?
user3824211
  • 21
  • 1
  • 6
-2
votes
2 answers

Stripping a sentence for only it's alpha characters

I'm trying to solve a code to strip a sentence down only to it's alpha character, using the following code, but the code always gives me a runtime error(The commented parts are steps I had taken to figure out the solution). [Ex: Test'sen- tence…
lind
  • 39
  • 1
  • 2
  • 6
-5
votes
4 answers

Undeclared identifier 'number', how do I get around this?

I am trying to show the a number that I have specified in a program, but recieve the following error: main.c(23): error #2048: Undeclared identifier 'number'. #include int main() { { int number = 32 ; } printf("integer is %d \n",…
-6
votes
1 answer

Can somebody tell me why I have this runtime error?

I have created a program on Pelles C, however, when I run it, it is skipping straight to the end of the function simply saying "press any key to continue" #include int main() { char letter; int num1, num2; printf("Enter any…
1
2