string.h strcmp (const char *s1, const char *s2 ) s1,s2文字列が同じかどうかを比較する関数。ヌル文字が出現した時点で比較は終了。 char s1="abc\0def"; char s2="abc\0hij"; if(strcmp(s1,s2) == 0){ prin...
C言語
C言語の記事一覧
基本的な記述方法まとめ 条件分岐処理if文の基本的な記述方法は以下の通りです。 if(n>0){ printf("nは0より大きい"); }else if(n==0){ printf("nは0です"); }else{ printf("nは0より小さい"); } if(n==0)の箇所は、if(n=0)と書いてしまうとn...
例として、配列の全要素を足すコードを書いてみます。void sum(int (*a)){ int i,j,sum=0;for(i=0;i...
C言語では、sizeof演算子を使うことで配列の要素数を求めることができます。sizeof演算子は変数や型のメモリサイズを返すので、これを利用します。char型、int型それぞれの所得方法を簡潔にまとめました。...
C言語において配列とポインタは密接な関係を持っています。特に、関数に配列を受け渡しするためには配列とポインタの関係性の理解が必須です。今回は、C言語のポインタと配列の関係、よく使われる関数への受け渡し方についてまとめます。...
category
最近の投稿
- The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()の解決方法
- 'lengths' argument should be a 1D CPU int64 tensor, but got 1D cuda:0 Long tensorの解決方法
- 'builtin_function_or_method' object has no attribute'view'の解決方法
- view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(…) instead.の解決方法
- 【Python】セルの文頭に[%%capture]や[%time]などを書く意味と役割(セルマジックコマンド)
おすすめの記事
-
pythonThe truth value of an array with more than one element is ambiguous. Use a.any() or a.all()の解決方法pythonerror2022.11.07
-
python'lengths' argument should be a 1D CPU int64 tensor, but got 1D cuda:0 Long tensorの解決方法pythonerror2022.06.02
-
python'builtin_function_or_method' object has no attribute'view'の解決方法pythonerror2022.06.02
-
pythonview size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(…) instead.の解決方法pythonerror2022.06.02
-
python【Python】セルの文頭に[%%capture]や[%time]などを書く意味と役割(セルマジックコマンド)2022.02.11
-
未分類【勝手に開く】Microsoft Edgeのヘルプと学習/Google Chrome ヘルプで大量のタブが勝手に開くときの対処方法Microsoft EdgeGoogle Chromeヘルプ大量に開く2022.02.06
-
C言語【c言語】if文の条件式で使われる関数まとめ2020.12.31
-
C言語【c言語】if文の基本的な書き方まとめ2020.12.27