void型とは、型がないことを示す型 0の概念と似ている。無いことを明示的に示す。 そう言えばあんま意識してなかったけど、ここでも使われている。 intmain(void){return0;} main(void)は引数を必要としないことを明示している。 voidfunc1(){}voidfunc2(void){}intmain(intargc,char*argv[]...
tpreturn A0 A0 tpforward A0 A0 tpterm I0 I0 他のすべての ATMI 関数 A0 A1 注記 a この状態遷移は、記述子が呼び出し元のトランザクションに対応しない場合にのみ起こります。b この状態遷移は、記述子が呼び出し元のトランザクションに対応する場合にのみ起こります。c...
char *a = ""; int main(void) { while(1) { if(*a == (char) 0xc3) break; a--; } char b = *a; // 見つけた後の処理 return 0; } 見つけた後はまず h を出力する必要があるので、必要なヘッダファイルをincludeします。 その後、 0xc3 とh のASCIIコードとの差を計算し...
= NULL) { /* 分離後の文字列を表示 */ printf("分離後の文字列:%s\n", token); /* 文字列を分離 */ token = strtok(NULL, delim); } return 0; } 下記の場合も str は“読み取り専用” のメモリを指すことになるので、実行するとプログラムは異常終了します(リテラルは変更できない)...
if(tpcommit(0) < 0) { (void)fprintf(stderr, "ERROR: tpcommit failed (%s)\n", tpstrerror(tperrno)); return(-1); } return(0);} do_tpcall() 関数は、次のタスクを実行します。 tpbegin() を呼び出して、グローバル トランザクションを開始します。これにより、すべての処理が ...
#include<stdio.h>intmain(void){unsignedlongintmax, zero;/* zeroの全ビットを0にする */zero =0;/* 全ビットを1にした値をmaxに格納 */max = ~zero;/* 結果を表示 */printf("max = %lu\n", max);return0; } 上記はunsigned long int型の最大値を求めるものになっていますが、求めた...
(WebResponse response = request.GetResponse()) { Console.WriteLine("{0} status: {1}", uri, ((HttpWebResponse)response).StatusDescription);using(StreamReader sr =newStreamReader(response.GetResponseStream())) { responseFromServer = sr.ReadToEnd(); } }...
{printf("spawned child with pid - %d\n",ch_pid);returnch_pid;}}intmain(void){intret;constchar*args[]={"top",NULL,NULL};pid_t child;intwstatus;child=spawnChild("top",args);if(waitpid(child,&wstatus,WUNTRACED|WCONTINUED)==-1){perror("waitpid");exit(EXIT_FAILURE);}exit(EXIT_...
obj)return-1;obj->valid=val;obj->data=dat;obj->size=siz;return0;}intmain(){int*tmp=NULL;MyObject*arr[MAX];for(inti=0;i<MAX;++i){arr[i]=malloc(sizeof(MyObject));if(initMyObject(arr[i],TRUE,tmp,sizeof(tmp))==-1){fprintf(stderr,"[ERROR] initMyObject() failed\n");break...
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(factory); factory = nissan_factory_new(); do_product(factory); free(factory); return 0;...