题解 2754: 其他基本数据类型存储空间大小

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

布尔类型变量

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <stdbool.h>int main (){    bool b;    char c;    printf ("%……

好写》好写

摘要:参考代码:#include<iostream> using namespace std; int main() { cout << sizeof(bool) << " " << sizeof(c……

2754: 其他基本数据类型存储空间大小

摘要:解题思路:使用sizeof函数输入bool和char注意事项:好人一生平安给个五星吧 让孩子涨涨积分吧 求求了参考代码:#include <bits/stdc++.h>using namespace ……

你怎么知道我单抽出金

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    cout<<sizeof(bool)<<" "<<s……