ar
Feedback
DataStructure and Algorithms Solutions with Supercool 💯

DataStructure and Algorithms Solutions with Supercool 💯

الذهاب إلى القناة على Telegram

DSA with supercool For paid projects:- Email :- supercool7151@gmail.com Follow me on social media https://linktr.ee/codemaking

إظهار المزيد
643
المشتركون
لا توجد بيانات24 ساعات
لا توجد بيانات7 أيام
لا توجد بيانات30 أيام
أرشيف المشاركات
IBM Coding Questions

Array Subset IBM interview question

🐍 Python, 📘 Flutter/Dart, 🌐 MERN Full Stack, 🖥️ HTML/CSS, 🌐 JavaScript

Repost from CodeWithSupercool
Who wants beginner to Advance level projects in these technology 1. Flutter Dart 2. Mern Full Stack 3. HTML, CSS and JS 4. Python(django , flask, pandasand etc..)
Anonymous voting

+2
C++ with Data Structure.pdf18.13 MB

+1
Thinking in C++ Volume 1 by Eckel Bruce.pdf2.89 MB

Tell us, which programming language do you think is the trickiest? 🤔 P.S: Your best response might just earn you a special reply from us!

Solution :- #include <iostream> #include <cstdio> using namespace std; int main() { // Complete the code. int myInt; long myLong; char myChar; float myFloat; double myDouble; // Taking input cin >> myInt >> myLong >> myChar >> myFloat >> myDouble; // Printing the input values cout << myInt << " \n" << myLong << " \n" << myChar << " \n" << myFloat << " \n" << myDouble << endl; return 0; }