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
|
1539 Discussions
|
Please Login in order to post a comment
include
include // Include for setting precision
using namespace std;
int main() { int integer; long longValue; char character; float floatingPoint; double doubleValue;
}
[DevOps Training Institute in Coimbatore]
Skyappz Software Academy has their unique teaching methodology, real-world project exposure and industry partnerships that make them stand out from other training institutes in the region. Skyappz Software Academy has certificate programs, flexible learning options and success stories of students excelling in DevOps education.
https://skyappzacademy.com/devops/
include
include
include
include
include
using namespace std;
int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
int a; long b; char c; float d; double e;
cin>>a >>b >>c >>d >>e; printf("%d \n%ld \n%c \n%f \n%lf \n", a, b, c, d, e);
return 0;
}
include
include
include
using namespace std;
int main() { int integer; long num1; char a; float num2; double num3; cin>>integer>>num1>>a>>num2>>num3; cout<
int main() { int a; long b; char c; float d; double e;
}