Skip to main content

Posts

Showing posts from May, 2022

Tech Burner Buy New Car Tesla Model X

Car Features All-New Interior Focus on Driving The ultimate focus on driving: no stalks, no shifting. Model X is the best SUV to drive, and the best SUV to be conducted in. Cinematic Experience A 17” touchscreen with left-right tilt offers 2200 x 1300 resolution, true colors,, and exceptional responsiveness for gaming, movies, and more. Wireless Gaming Up to 10 teraflops of processing power enable in-car gaming on par with today's newest consoles. Wireless controller compatibility lets you game from any seat. Stay Connected Multi-device Bluetooth, wireless and USB-c talkin 'for every passenger, with any power to fast-charge your tablets and laptops. Your Best Audio System A 22-speaker, 960-watt audio system with Active Road Noise Reduction offers the best listening experience wherever you are. Model X The Dual Motor All-Wheel Drive platform has the longest range and now delivers incredible power and acceleration. 3.8 s                   ...

Simulation of a Simple Calculator | COMPUTER PROGRAMMING LABORATORY | 21CPL27/17 | C program | Engineering

simple calculater #include<stdio.h> #include<stdlib.h> void main() { float a,b,c; char op; printf("enter the two operands\n"); scanf("%f%f",&a,&b); printf("enter an operator\n"); scanf(" %c",&op); switch (op) { case '+': c=a+b; printf("%f+%f=%f\n",a,b,c); break; case '-': c=a-b; printf("%f-%f=%f\n",a,b,c); break; case '*': c=a*b; printf("%f*%f=%f\n",a,b,c); break; case '/': if(b!=0) { c=a/b; printf("%f/%f=%f\n",a,b,c); exit(0); } else printf("division by 0 error"); break; default: printf("enter valid operation"); } } simple calculater Start  Read 2 numbers as a and b Read operator (+ or – or * or /) a...