Devil Blog
Tuesday, January 23, 2024
C Program to find add two numbers
#include<studio.h>
void main()
{
int a=1,b=4;
printf("Addition is %d",a+b);
}
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)
Blog chatgpt Blog
Java program Display vehicle details using abstract class
Program :- class HelloWorld { public static void main(String[] args) { Bike tvs=new Bike("TVS Sports","Green...
C program to print Star pattern
//C program to print Star pattern #include<stdio.h> void main() { int i,m,n,j; printf("Enter row values\n"); scanf("%d...
Krushkal algorithm
//Program of krushkal algorithm #include <stdio.h> #include <stdlib.h> #define V 5 // Number of vertices #define E 6 // Number ...