#include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { for (int i = 0; i < 108; i++ ) fprintf(stderr, "%s\n", strerror(i)); return EXIT_SUCCESS; } 参考C言語関数辞典 - strerror0 0 comment0 Register as a new user and use Qiita more conveniently...
#include <stdlib.h> #include "factory.h" static void do_product(Factory factory) { Product product = factory->product_factory(); product->show_name(product); factory->product_free(product); } int main() { Factory factory; factory = toyota_factory_new(); do_product(factory); free(factor...
#include<stdio.h>intmain(void){unsignedlongintmax, zero;/* zeroの全ビットを0にする */zero =0;/* 全ビットを1にした値をmaxに格納 */max = ~zero;/* 結果を表示 */printf("max = %lu\n", max);return0; } 上記はunsigned long int型の最大値を求めるものになっていますが、求めた...
#include<math.h>doublelog(doublex);doublelog2(doublex);doublelog10(doublex); これらの関数を利用する際にはmath.hをインクルードする必要があります。 スポンサーリンク log・log2・log10関数の返却値 これらの関数の返却値はそれぞれ下記のようになります。要は、それぞれlogex・log2...
#include <atmi.h>int tpenqueue(char *qspace, char *qname, TPQCTL *ctl, char *data, long len, long flags)tpenqueue()が呼び出されると、qspaceで識別されるキュー・スペース内のqnameキューにメッセージを格納するようにシステムが指示されます。メッセージはdataが指すバッファ内に...
1 #include <stdio.h> 2 #include "atmi.h" /* TUXEDO */ 3 4 5 6 7 #ifdef __STDC__ 8 main(int argc, char *argv[]) 9 10 #else 11 12 main(argc, argv) 13 int argc; 14 char *argv[]; 15 #endif 16 17 { 18 19 char *sendbuf, *rcvbuf; ...
P0061R1 __has_include VS 2017 15.3 14 P0138R2 Direct-list-init of fixed enums from integers VS 2017 15.3 17 P0170R1 constexpr lambdas VS 2017 15.3 17 P0189R1 [[nodiscard]] attribute VS 2017 15.3 17 P0212R1 [[maybe_unused]] attribute VS 2017 15.3 17 P0217R3...
P0061R1 __has_include VS 2017 15.3 14 P0138R2 Direct-list-init of fixed enums from integers VS 2017 15.3 17 P0170R1 constexpr lambdas VS 2017 15.3 17 P0189R1 [[nodiscard]] attribute VS 2017 15.3 17 P0212R1 [[maybe_unused]] attribute VS 2017 15.3 17 P0217R3...