我想在BusyBox服务器上启用SSH服务(目前我只能通过Telnet连接),所以我想,我需要编译SSH服务器,并将其发送到BusyBox路由器.所以我的问题是 - 如何创建SSH服务器二进制文件,通过FTP将其发送到BusyBox?
我在c上尝试了一些计算,我的代码如下
#include <stdio.h>
#include <math.h>
int main(void)
{
float a = 1.8;
float b = 3.3;
float c = 1.5;
float d = 5.9;
float e = 2.6;
float result = a / (a + (abs(a - b) / (b + (pow(c, 5) / (e + (pow(d, 2) / (b + (pow(c, 3) / 4))))))));
float result2 = a / (a + ((-1) * (a-b)) / (b + ((c * c * c * c * c) / (e + …Run Code Online (Sandbox Code Playgroud)