Oleg Ageev

Avatar
  • 活动总数 10
  • 最后的活动
  • 成员加入日期
  • 关注 0 名用户
  • 关注者数 0 名用户
  • 投票数 0
  • 订阅数 4
  • Oleg Ageev 创建了一个帖子,

    String truncated in debug

    In time of debug of following code:#include <stdio.h>#include <stdlib.h>#include "bcrypt.h"int main() {    static char  hash[BCRYPT_HASHSPACE];    if (crypt_newhash("password", "blowfish,4", hash, ...
  • Oleg Ageev 创建了一个帖子,

    Hexadecimal view in debug

    How i can view value of variable in hex?
  • Oleg Ageev 创建了一个帖子,

    Why debug so slowly?

    Example:  #include <stdio.h> #include <time.h>int main() {  char buffer[1024];  time_t start = time(NULL);  fgets(buffer, sizeof buffer, stdin); // breakpoint  printf("%.0f\n", difftime(time(NULL),...
  • Oleg Ageev 进行了评论,
  • Oleg Ageev 进行了评论,
  • Oleg Ageev 创建了一个帖子,

    CMake Environment

    Why environment passing doesn't work?