タグ

開発と侍エンジニア塾に関するmohnoのブックマーク (1)

  • 侍エンジニア塾のC言語のサンプルがヤバすぎる。


    C10   #include <stdio.h> #include <stdlib.h> //  typedef struct { int num; char *str; } strct; int main(void) { //  strct *entity; // strct entity = (strct*)malloc(sizeof(strct)); //  entity->num = 0; entity->str = (char*)malloc(sizeof(32)); //  sprintf(entity->s
    侍エンジニア塾のC言語のサンプルがヤバすぎる。
    mohno
    mohno 2018/10/17
    マジレスすると“指導者”側でもC言語を正しく理解してない人のコードはホントに酷い。Java屋さんが片手間で作ってfreeしてない、closeしてない、みたいなのもあった。
  • 1