4
votes
4answers
114 views

What is the difference between %0.2lf and %.2lf as printf placeholders?

I am aware that putting any number of 0's before the width of the placeholder implements zero-padding. For example, printf("%02d", 6); prints 06. But what does putting a single 0 before the precision ...
1
vote
0answers
124 views

My fprintf isn't working

So I have a program which reads pixels from a picture file, stores the data in a 3d array, then reoutputs the data with black and white pixels, and then reoutputs with the pixels rotated 90 degrees. ...
0
votes
3answers
524 views

Getting width and height from jpeg image file

I wrote this function to given filename(a jpeg file) shall print its size in pixels, w and h. According to tutorial that I'm reading, //0xFFC0 is the "Start of frame" marker which contains the ...
4
votes
1answer
721 views

What does the “different width due to prototype” warning mean?

The code generating the warning, passing argument 1 of 'isHex' with different width due to prototype: /* Checks if a character is either 0-9 or A-F */ int isHex(char ch) { return isdigit(ch) || ...
1
vote
1answer
595 views

Finding width and height of a .bmp image in C

I wanted to know if it is possible to find the width and height of a .bmp image in C. I've looked all over the place but all I could find is examples in c#, .NET and C++. However, I couldn't find any ...
4
votes
7answers
387 views

Is there any way to compute the width of an integer type at compile-time?

The size of an integer type (or any type) in units of char/bytes is easily computed as sizeof(type). A common idiom is to multiply by CHAR_BIT to find the number of bits occupied by the type, but on ...
3
votes
5answers
738 views

Width as a variable when using fscanf

I am trying to read in a certain portion of a file and that amount of data is different per line but I know how how many bytes of info I want. Like this: 5bytes.byte1byte2byte3byte4byte5CKSum ...
1
vote
1answer
114 views

Without width printing format in C

in C if I have a printf statement containing say "%.2f", it says that the precision is 2 digits after the decimal place. I haven't explicitly specify the width. I have two questions: Is this good ...
29
votes
6answers
14k views

Getting terminal width in C?

I've been looking for a way to get the terminal width from within my C program. What I keep coming up with is something along the lines of: #include <sys/ioctl.h> #include <stdio.h> int ...
1
vote
3answers
1k views

Resize Combobox in win32 (change width)

I have the following code to generate a ComboBox: HWND h = CreateWindowEx("COMBOBOX", "Text", CBS_DROPDOWN | WS_CHILD, WS_EX_CLIENTEDGE, ParentWnd, 0, 0, 200, 24); The combobox is created on my ...