English 中文(简体)
标签:
c
的问答
Word-wrap问题
原文:Word-wrap issue

I m对C来说非常新,总体规划,Im目前试图起草一个文字段落的方案,以便案文中的任何内容都不超过一定的规模。 原文......

我已撰写了C区法。 它正确地对上案的函件进行加密/加密,但错误地将加密/加密放在下级文字上。
原文:I have written the code of affine cipher in C. It correctly encrypts/decrypts the uppercase letters but incorrectly encrypts/decrypts lowercase letter

#include <stdio.h> #include <stdlib.h> #include <time.h> # define MAX_LENGTH 100 int GCD(int a, int b) { if(b == 0) { return a; } GCD(b, a%b); } struct Pair{ ...

定位2个动态点
原文:Allocating Two Dynamic Pointers

I m trying to understand pointers. Essentially, I m trying to allocate a pointer to another pointer so that I get a two dimensional dynamic array. I can either us malloc to allocate *A or (assuming ...

热门标签