We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Basic Data Types
- Discussions
Basic Data Types
Basic Data Types
Sort by
recency
|
1563 Discussions
|
Please Login in order to post a comment
This challenge really helped me understand how different data types work in C++ and how precision formats are handled. I also wrote a short post explaining this with simple examples and beginner-friendly tips.Sharing here in case it helps someone CarX Street
include
using namespace std;
int main() {
}
include
include
using namespace std;
int main() { int i; long l; char c; float f; double d;
}
int main() { // Complete the code. int a; long b; char c; float d; double e;
}