python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Implementing PRI macros 'portably'
The C99 specified inttypes.h header includes macros for providing format specifiers for the fixed-width integer types provided by stdint.h (beginning with PRI). While stdint.h is on the 'freestanding...

Fraggle
Votes: 0
Answers: 2
Why is my Xcode dialect change not being put into effect?
I am just getting introduced to string in C, and my teacher uses CodeBlocks on windows and I'm using Xcode.
He introduced me to this:
#include <stdio.h>
#include <string.h>
int main()
{
...
Glowing_glasses
Votes: 0
Answers: 0
Function declaration inside of block in C
Does the C standard (C99 +) require the implementation to allow function declarations to be placed within a block in order to limit their scope to that block and where is this covered in the standard?...

Jonathon S.
Votes: 0
Answers: 2
How to create a vector of objects efficiently in C++?
vector<vector<int>> v(100, vector<int>(100)); // 101 vector<int> are created
I need to created a vector of vectors (or objects) like above. But then there will be 101 vector&l...
Xiaofeng Zheng
Votes: 0
Answers: 1