top of page
About Me

Experienced .NET Core / Full stack Developer, embracing SOLID design principles, with 8+ years of experience in Web API, MVC, Azure, OpenID/OAuth, Microsoft SQL Server/MySQL, Angular/React, Azure, AWS, CI/CD Pipelines, Hangfire, Redis and a strong foundation in Test-Driven Development (TDD). Recognized for staying abreast of emerging technologies. Eager to contribute leadership, innovation, and technical expertise in a dynamic role.
Search


How to get the IP Address in C
#include int main() { system("C:\\Windows\\System32\\ipconfig"); return 0; } Output of program: ( In Windows 7) If you are using turbo...
Jino Shaji
Jan 2, 20151 min read
0 views
0 comments


Matrix multiplication in c language
#include int main() { int m, n, p, q, c, d, k, sum = 0; int first[10][10], second[10][10], multiply[10][10]; printf(“Enter the number of...
Jino Shaji
Jan 2, 20151 min read
0 views
0 comments


C Program to Merge two files
#include #include int main() { FILE *fs1, *fs2, *ft; char ch, file1[20], file2[20], file3[20]; printf("Enter name of first file\n");...
Jino Shaji
Jan 2, 20151 min read
1 view
0 comments
What is a programming language?
A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks. The term programming language usually...
Jino Shaji
Jan 2, 20151 min read
1 view
0 comments


C Program for sorting using Bubble Sort
#include #include void bubble_sort(int [],int); void main() {  int A[30],i,n,j,temp;  clrscr();  printf(“Enter The Number Of...
Jino Shaji
Jan 2, 20151 min read
0 views
0 comments


C Program to convert infix expression to post-fix expression
#include #include #include #include int priority(char c); void main() { int top=-1,i=0; Â char a[50],s[50]; Â clrscr(); Â ...
Jino Shaji
Jan 2, 20151 min read
1 view
0 comments
Pointers In C
C Pointers Pointers in C are easy and fun to learn. Some C programming tasks are performed more easily with pointers, and other tasks,...
Jino Shaji
Jan 1, 20153 min read
0 views
0 comments
C Program to Find Size of int, float, double and char of Your System
C Program to Find Size of int, float, double and char of Your System The size of a character is always 1 byte but, size of int, float and...
Jino Shaji
Jan 1, 20151 min read
0 views
0 comments
C Program Swap Numbers in Cyclic Order Using Call by Reference
This program takes three enters from user which is stored in variable a, b and c respectively. Then, these variables are passed to...
Jino Shaji
Jan 1, 20151 min read
1 view
0 comments


C program to print diamond pattern
C program to print diamond pattern Diamond pattern in c: This code print diamond pattern of stars. Diamond shape is as follows: * ***...
Jino Shaji
Dec 31, 20141 min read
0 views
0 comments


Selection sort algorithm implementation in c
Selection sort in c Selection sort in c: c program for selection sort to sort numbers. This code implements selection sort algorithm to...
Jino Shaji
Dec 31, 20141 min read
1 view
0 comments


C programming code to merge two sorted arrays
C program to merge two arrays C program to merge two arrays into third array: Arrays are assumed to be sorted in ascending order. You...
Jino Shaji
Dec 31, 20142 min read
0 views
0 comments


C program to print Floyd’s triangle
C program to print Floyd’s triangle C program to print Floyd’s triangle:- This program prints Floyd’s triangle. Number of rows of Floyd’s...
Jino Shaji
Dec 31, 20141 min read
0 views
0 comments


C program to print Pascal triangle
Pascal Triangle in c: C program to print Pascal triangle which you might have studied in Binomial Theorem in Mathematics. Number of rows...
Jino Shaji
Dec 31, 20141 min read
7 views
0 comments


Jino Shaji
Dec 31, 20140 min read
0 views
0 comments


Program to find the Mean,Median,Mode,Variance and Standard Deviation
Program to find the Mean,Median,Mode,Variance and Standard Deviation #include #include #include #define SIZE 100 void main() { Â long int...
Jino Shaji
Dec 30, 20141 min read
10 views
0 comments


C Program for matrix multiplication
#include #include main() {  int m1[20][20],i,j,k,m2[20][20],mult[20][20],r1,r2,c1,c2;  clrscr();  printf(“Enter the order of the first...
Jino Shaji
Dec 30, 20141 min read
0 views
0 comments
Blog: Blog2
bottom of page