Technocrat
Home
Toggle navigation
No posts with label
C++ Programming
.
Show all posts
No posts with label
C++ Programming
.
Show all posts
Home
Pages
Home
Trending Now
Write a Program to Add two 3x3 Matrix using C
#include<stdio.h> void main () { int a [ 3 ][ 3 ], b [ 3 ][ 3 ], s [ 3 ][ 3 ], i , j ; printf ( "Enter the values of ...
C program for Unit Conversion
/* Convert Celsius to Fahrenheit */ #include<stdio.h> void main() { float c,f; printf("Enter the temperature in Celcius: ...
Addition of two numbers on Server sent from Client [TCP] using C
/* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
Write a Program to Print the Truth Table of Basic Gates using C
Write a Program to Add two 5x5 Matrix using C
#include<stdio.h> void main() { int a[5][5],b[5][5],c[5][5]; int i,j; for(i=0;i<5;i++) { printf("\nEnter elements ...
Using the concept of Inheritance write a C++ Program to calculate the area and perimeter of rectangle
/* C++ Program to calculate the area and perimeter of rectangles using concept of inheritance. */ #include using namespace std; class Re...
Concatenation of two strings sent from Client on the Server - [ TCP ] using C
/* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
8085 Programming: Exchange the contents of memory locations
Exchange the contents of memory locations 2000H and 4000H. Program 1: LDA 2000H : Get the contents of memory location 2000H into accumulator...
Calculate Depreciation using C
#include<conio.h> #include<stdio.h> void main () { float sv , pv , dep ; int yos ; clrscr (); printf ( "Enter the pu...
8085 Programming: 1's COMPLEMENT OF A 16-BIT NUMBER
The 16bit number is stored in C050,C051 The answer is stored in C052,C053 LXI H,C050 MOV A,M CMA STA C052 INX H MOV ...
Blog Archive
▼
2020
(1)
▼
May
(1)
Automating your deployments using Ansible
►
2015
(92)
►
October
(4)
►
September
(3)
►
August
(3)
►
July
(9)
►
June
(9)
►
May
(20)
►
April
(7)
►
March
(22)
►
February
(7)
►
January
(8)
►
2014
(158)
►
November
(70)
►
October
(6)
►
September
(82)
Powered by
Blogger
.