私は C が初めてで、これら 4 つの整数を 1 つの整数に結合しようとしています。
srand(time(NULL));
int intOne = 1+rand()%255;
int intTwo = 1+rand()%255;
int intThree = 1+rand()%255;
int intFour = 1+rand()%255;
int allCombined = ("%i.%i.%i.%i", intOne, intTwo, intThree, intFour);
printf("%i", allCombined);
これら 4 つの整数を組み合わせて、IP アドレス形式の 1 つの変数にするだけです。
例: 108.41.239.216
それらを組み合わせて、後で使用するために変数に保存するにはどうすればよいですか?