This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main() { | |
| float m, a, F; | |
| printf("Enter mass (m): "); | |
| scanf("%f", &m); | |
| printf("Enter acceleration (a): "); | |
| scanf("%f", &a); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| int main(){ | |
| int n; | |
| float length,breadth,area; | |
| printf("Enter number of land plot:"); | |
| scanf("%d",&n); | |
| { | |
| printf("\nEnter length of plot %d:",length); | |
| scanf("%f",&length); | |
| printf("\nEnter breadth of plot %d:",breadth); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Online C compiler to run C program online | |
| #include <stdio.h> | |
| int main() { | |
| // Write C code here | |
| printf("Try programiz.pro"); | |
| return 0; | |
| } |