Area of Triangle
Command line program to find the area of triangle
#include <stdio.h> int main(int argc, char *argv[]) { int base, height; float area; base = atol(argv[1]); height = atol(argv[2]); area = base*height/2; printf("%f",area); }
One Subscription, For Everything
The new cool way of learning and upskilling -
One Subscription access everything
Get Access to PrepInsta Prime
from FAANG/IITs/TOP MNC's
PrepInstaPrime
Get over 200+ course One Subscription
Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others.
Login/Signup to comment