Search

August 28
Issues »
...implicit ref declarations:

struct S
{
    int i;
    char c;
}

void main()
{
    S s = {2, 'c...
August 28
General »
...d
import std;

struct S
{
    int i;
    char c;
}

void main()
{
    S s = {2, 'c...
August 27
Genel »
...range : join;
    import std.conv : to;

    char c1 = '\0';
    char c2 = OnlyNumbers ? '\0' : '0';

    static...
August 26
General »
...system` or `@trusted` functions:

```D
void f(char[] str) @safe; // parameter `str` is not marked...
August 26
General »
...takes char pointers, not arrays, unlike `toStringz`. So this would compile: `fopen(new char('u...
August 26
General »
...class Token {}

struct Tokenizer
{
    char[] input;
    Token front;
}

Token getToken() @safe
{
    char[5] input = "1...
August 26
General »
...kinda contentious ones, like:

FILE fopen(char* filename, char* mode);

Now, clearly there's a...
August 22
Genel »
...desteği mükemmel:

```d
  //alias strings = immutable(char[])[];/*
  alias strings = char[][];//*/
  strings str;
  foreach(s; [ "Kaan...
August 19
General »
...the function:

```
core.exception._d_assertp(immutable(char*) file, uint line);
```
is called. That forwards...
August 17
Learn »
...wrong with using
the char[60] directly?


        import std.stdio;

        immutable char[60] a = '-';

        void...
1 2 3 4 5 6 7 8
Next ›   Last »