-
### Zig Version
0.9.1
### Steps to Reproduce
Hello, is there a formatted input function in the standard library ?
Example in C:
#include
int main(void)
{
unsigne…
-
I'm trying to parse a json string looks like this
```json
{
"a": { "a": 1 },
"b": { "b": 2 }
}
```
The code I used follows
```c
char buff[] = "{\"a\":{\"a\":1},\"b\":{\"b\":2}}"…
-
#include
int main(void){
int x;
int y;
int m;
int R[20];
int i;
printf("Please enter a decimal number");
scanf("%d",&x);
m = x;
for(i = 0; m != 1 ; i++)
{
R[i] = m…
-
OW prints the wrong values for %a and %A
(hexadecimal output for float values)
example from cppreference:
```
printf("\tHexadecimal:\t%a %A\n", 1.5, 1.5);
```
expected result:
```
Hexadecimal:…
-
There appears to be an issue with the --multi-property switch in ESBMC 7.3.0. In contrast, the --multi-property switch functions correctly in ESBMC 7.2.0. However, with ESBMC 7.3.0, only the first p…
-
scanf is not safely to read data
-
The C runtime on Windows supports UTF-8 in `printf()`, but not in `scanf()`:
> scanf doesn't currently support input from a UNICODE stream.
(https://learn.microsoft.com/en-us/cpp/c-runtime-libra…
-
negocio agora é scanf
-
I think there is a bug here:
```
sample[c][0] = -1.0;
for(i=1;i
-