Question List of class 9T
Question List for Practice of class 9T unit wise Unit 1 ( Principles of Programming) Explain Program and …
Question List for Practice of class 9T unit wise Unit 1 ( Principles of Programming) Explain Program and …
P rogram to find perimeter of square #include<stdio.h> int main() { int l,b,P; print…
Program to find area of square #include<stdio.h> int main() { int l,A; printf(&quo…
Program find area and perimeter of square in C. #include<stdio.h> int main() { …
program to find perimeter of rectangle (P=2*(l+b)) #include<stdio.h> int main() { int l,b,P; prin…
Program to find area of rectangle (A=l*b) #include<stdio.h> int main() { int l,b,A; printf("e…
program to find simple interest and amount. #include<stdio.h> int main() { int si,p,t,r,A…
// Area and perimeter of rectangle #include<stdio.h> int main() { int l,b,A,P; printf("enetr …
Program to add three Number in C //add three number #include<stdio.h> int main() { int a,b,c,sum;…
Program to add two number in c using devc++ //add two number #include<stdio.h> int main() { int a,…
Best Online Websites to Compile & Debug C/C++ with GDB 1. OnlineGDB (Recommended) 🔗 Website: Search fo…
C Program: Print "Hello" 50 Times #include <stdio.h> int main() { for (int i = 0; i <…
Here is the C program to check whether a number is odd or even — simple and clear. #include <stdio.h>…
Here are the two best methods to find the largest of three numbers in C . The code are here as follow:- ✅ Me…
C Language is a powerful, general-purpose, and high-performance programming language developed by Dennis R…