This tag is for questions regarding the International Standard ISO 9899:1989, aka "C89" or "ANSI C", with amendmends and technical corrigenda, and for questions about code written in C89 (as opposed to K&R C, C99 or later C Standard revisions).
2
votes
2answers
60 views
Where can I find C89/C90 standard pdf?
I'm looking for a free copy version of C89/C90 standard. But I can't find it anywhere! Why is so hard to find it? C99 and C11 standards are very easy to get a copy on internet. Even in this thread and ...
1
vote
1answer
31 views
Win32 Runtime Created LISTBOX and LB_ADDSTRING errors
I am creating a LISTBOX using the default LISTBOX class in Windows and the C language.
The Listbox is drawn onto the main window properly, but when I try to subsequently fill it with any data, it ...
0
votes
0answers
7 views
sys/socket missing member for msgdr: msg_control, msg_controllen, msg_flags
I'm trying to write a little Client-Server application using the UNIX DOMAIN SOCKETS.
I'm using the msghdr for the sendmsg/recvmsg but when I compile the following code, it gives me the following ...
3
votes
1answer
46 views
Why does GCC not complain about _Bool in c89 mode?
Why does the following command produce no warnings or errors, even though _Bool is not part of C89?
$ echo "_Bool x;" | gcc -x c -c -std=c89 -pedantic -Wall -Wextra -
For comparison, changing ...
1
vote
2answers
99 views
Why this C program complies and runs
With curiosity of the definition and scope of typedef I have written below C code in 2 .c files:
main.c
#include <stdio.h>
int main()
{
int a = 5, b = 6;
printf("a = %d, b = %d\n", a, ...
0
votes
0answers
66 views
standards compliance and run time requirements [closed]
This is strictly about the C standard and a hypothetical compiler that implements it.
Let's assume I have a compiler that correctly accepts valid C programs as the C ISO standard defines them. It ...
3
votes
3answers
80 views
Are wchar_t and multibyte functions part of ANSI C?
C99 and C11 support wchar_t and multibyte functions .But I am not sure about ANSI C (1989).
Is it correct that wchar_t and multibyte functions (mblen, mbstowcs, mbtowc, wcstombs, wctomb) are part of ...
0
votes
0answers
48 views
what is the knowlegable approach to learning C++ [closed]
I've been teaching myself c++ for about a month and I'm about to do some real heavy reading on c++ to really start learning it. I have an interest in Perl and Java as well, but from reading books java ...
3
votes
4answers
199 views
Can an ANSI C compiler remove a delay loop?
Consider a while loop in ANSI C whose only purpose is to delay execution:
unsigned long counter = DELAY_COUNT;
while(counter--);
I've seen this used a lot to enforce delays on embedded systems, ...
1
vote
2answers
68 views
Enum declaration not found when including containing header
I have an enumerator type that is declared in a header file. I would like to use this in a c file that includes this header file. However when compiling I get an error that the enumerator type is not ...
7
votes
4answers
289 views
How to define NaN value in ANSI C? [duplicate]
Possible Duplicate:
NaN Literal in C?
I'm writing a function in ANSI C which receives two numbers as parameters. The parameters are of int or float type. The number may or may not be valid ...
-4
votes
2answers
156 views
Why C standards contain many unsafe functions, which are useless?
Why C standards contain many unsafe functions, which are useless (in good programs them don't use) and harmful, for example getchar? Why C standard doesn't contain instead of them the useful ...
2
votes
1answer
129 views
Is gcc doing implicit function declarations incorrectly in c99 mode?
Consider the following code:
int main (void) {
int i = xyzzy();
return i;
}
int xyzzy (void) {
return 42;
}
Now, although the prototype for xyyzy is unkown at the point of use, this ...
17
votes
1answer
177 views
Why do some C standard headers begin with 'std' while others don't?
For example, in the new C11 standard there have been added stdalign.h and threads.h. Why not stdthreads.h or align.h? Is it to avoid collisions with exiting libraries and system headers?
6
votes
3answers
138 views
Dereferencing in C
I've just started to learn C so please be kind.
From what I've read so far regarding pointers:
int * test1; //this is a pointer which is basically an address to the process
//memory and ...
1
vote
2answers
386 views
ANSI C compile error: expected expression before ‘,’ token
I continue to get this error when attempting to compile a bit of code I wrote up, with the location in the file being totally unhelpful. This uses gtk 2.0.
The following is what I receive at compile ...
1
vote
4answers
91 views
Can enum member be the size of an array in ANSI-C?
I need to allocate an array according to how many elements the enum have. I did the following:
enum { A, B, C, LAST };
char buf[LAST];
That works fine,even with -ansi -pedantic flags. But I'm not ...
1
vote
2answers
41 views
Changing of existing text in console window
Sometimes, when I install programs, I see progress bar in console window (or other, dynamic changing text). It is displayed, and changing in the same row of string. When I use printf or other ...
1
vote
1answer
149 views
struct casting ansi c 89
Are struct well defined in strict c 89?
I mean this code
struct a {
int a, b;
void * c;
} k;
//init k...
struct b {
int u, w;
long *data;
} p = *(struct b*)&k;
is going to work ...
2
votes
1answer
97 views
`clang -ansi` extensions
I ran into an issue recently where the following toy example compiles cleanly using clang -ansi:
int main(void)
{
for (int i = 0; 0; );
return i;
}
but gcc -ansi gives the following error:
...
3
votes
2answers
656 views
How to “simulate” C99 in Visual Studio for variables declaration
I'm using Visual Studio 2012 to develop simple Win32 C programs. I know that the VS compiler only supports C89, but I'd like to know if there is a way to override this limitation.
In particular I'd ...
2
votes
2answers
107 views
Remainder operator in c89 and c99
c99 standard says that result of modulo operation has same sign as first operand. So -9 % 7 = -2 and 9 % -7 = 2.
I read in one book that c89 standard depends on implementation. So -9 % 7 could yield ...
-2
votes
2answers
302 views
The Vigenere encryption
I have written some code, and the Vigenere encryption is used in it. This is a simple program for encrypting/decrypting any files.
#include<stdio.h>
/*
LANGUAGE: C.
STANDARD: C89.
ABOUT ...
3
votes
2answers
1k views
clear/truncate file in C when already open in “r+” mode
My code currently looks something like this (these steps splitted into multiple functions):
/* open file */
FILE *file = fopen(filename, "r+");
if(!file) {
/* read the file */
/* modify the ...
2
votes
3answers
162 views
Is there a type-safe way of getting an element count for arrays in C?
The usual approach to getting an array's element count in C in something like this:
#define COUNTOF(arr) (sizeof(arr) / sizeof(arr[0]))
This results in an integral-constant expression, which is a ...
0
votes
2answers
253 views
How can I get error message for errno value (C language)?
How can I get error message for errno value (C language)? For example, I can write such file (errno_messages.h):
#include <errno.h>
char* get_errno_message(void){
switch (errno) {
case ...
0
votes
1answer
220 views
File won't compile in MS Visual Studio, but will in GCC. Why?
I wrote such sample code:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
char* print_errno_msg(int value);
int ...
0
votes
3answers
140 views
Using WinAPI & DWMApi in ANSI C
I've got a question regarding writing applications for Windows. Can I use WinAPI and DWMApi (aero glass, ribbon, etc.) when programming in ANSI C? I'm looking at MSDN right now and they use c++.
1
vote
1answer
85 views
Pointer Equality When Used Inside Structs
I've been trying to get one pointer to equal the other pointer for quite some time but It just won't do it, and i'm not really sure why.
The structs are:
typedef struct{
struct listNode* next;
} ...
1
vote
3answers
219 views
How is \0 incorporated into normal text files in reference to fgets
I was just wondering that when you input text just using a normal application such as textedit (on OSX) would it still harbour the same '\0' character on the end of each string so that when read ...
0
votes
1answer
38 views
Problems with a structure copy
I am having a compiler issue in Visual Studio 2005 using the standard C compiler when trying to do a structure copy from one location to another.
The types are defined in a file as follows:
...
0
votes
0answers
41 views
Is “true” (lower case) already a keyword in visual studio? Can it be overidden?
I am using the visual studio 2005 C++ compiler (but are coding using C89 type ANSI C) and am unable to define a "true" and "false" keyword to use as follows:
#define true 1
#define false 0
I have ...
0
votes
3answers
103 views
Combining comparison tests within a control flow statement in ANSI C
I am trying to remember if, using a standard c compiler (C89), the two if statements below will evaluate in the same way.
snippet 1:
boolean function(formattype* format)
{
if(format != null ...
5
votes
3answers
555 views
Should I use ANSI C (C89)?
It's 2012. I'm writing some code in C. Should I be still be using C89? Are there still compilers that do not support C99?
I don't mind using /* */ instead of //.
I'm not sure about C89 forbids ...
1
vote
2answers
170 views
Fixed-width integers in ANSI C
How do I handle a 4-byte char array as a typical int in ANSI C?
Some context:
I'm parsing a binary file, where I need to read 4-bytes unsigned integers.
I want to make sure that, no matter what ...
0
votes
2answers
80 views
MSVC 10.0 c vs c++ differences
I'm having difficulty compiling the C program below, It's just the begining of me trying to understand winsock.
The issue is that when compiling the program client.c, I get an error (C2143) missing ...
1
vote
5answers
187 views
Polymorphic function parameters/return values in C
I'm working in an embedded microcontroller and I have to read/write multiple types data to Non-Volatile RAM (NVRAM). I'd like to avoid having to write separate read/write functions for each value to ...
0
votes
1answer
36 views
High level - interpreted language in C89
I need any high level language interpreter written in C89. What are my options?
I would like to take the language and possible extend it to support some of the low level OS dependent ...
3
votes
2answers
128 views
Main with single argument
I've recently come across a C program in which the main function only took a single argument. Is this legal in C89? gcc didn't seem to have any problems with it.
What I think happens is that the ...
0
votes
3answers
978 views
Implicit declaration of function fmax
I have the following code:
#include <stdio.h>
#include <math.h>
int main(void) {
printf("%f\n", fmax(1.2, 3.4));
return 0;
}
If I compile with:
gcc a.c -o a && ./a
...
1
vote
4answers
245 views
Representing individual bits in C
If I have 16 bits that represent 3 pairs of values, each 5 bits long, and one other 1 bit value, in exactly this order, is it safe to use a bitfield to describe this? Does ANSI C guarantee that the ...
10
votes
3answers
348 views
Is returning va_list safe in C?
I'd like to write a function that has return type of va_list.
example: va_list MyFunc(va_list args);
is this safe and portable?
4
votes
1answer
949 views
Pass matrix as argument
I want to pass two matrices as argument. These matrices have different size and i don't understand how i have to do this work:
#include <stdio.h>
#include <stdlib.h>
void f(int m[3][], ...
4
votes
0answers
221 views
Are there still non-ansi C (pre C89) compilers in use? [closed]
I'm currently maintaining some very old C code. It's written in mostly K&R C (pre C89/pre ANSI-C). I'd like to drop this support and "ANSIfy" this code and make it a requirement to have a C89 ...
14
votes
2answers
459 views
Typesafe varargs in C with gcc
Many times I want a function to receive a variable number of arguments, terminated by NULL, for instance
#define push(stack_t stack, ...) _push(__VARARG__, NULL);
func _push(stack_t stack, char *s, ...
0
votes
1answer
129 views
default argument promotions in the case of inplicit function declarations
before posting I'm sorry if the question appears (or is) stupid and for my bad English,
I've tried to search in old questions but I've not solved my problem.
I try to explain my doubt;
Supposing to ...
0
votes
2answers
137 views
Which type should I use for a pointer ? ptrdiff_t or void*?
Which line is the correct (best) way for defining a pointer?
typedef ptrdiff_t pointer; // pointers are ptrdiff_t.
-- or --
typedef void* pointer; // pointers are void*.
pointer ptr = ...
0
votes
2answers
159 views
How to define and use a struct without full struct definition in header?
For controling struct members and force programmers to use getter/setter functions, I want to write code like below pattern:
/* Header file: point.h */
...
/* define a struct without full struct ...
0
votes
2answers
304 views
Is long double useful in ANSI C?
There is a data type in C89 (ANSI C) standard called long double, but there is no any mathematical function to support long double (<math.h>). For example, sin function accepts a long argument.
...
4
votes
2answers
152 views
Would it be safe to do swap by “b=(a+b)-(a=b);”?
In Cprogramming.com I found this piece of code:
int a,b;
scanf("%d %d",&a,&b);
b=(a+b)-(a=b);
printf("%d %d",a,b);
It is claimed to be a tip/trick to "swap without using temporary". My ...

