Tech Glimpse

Thursday, December 14, 2017

Infix to Posfix, Infix to Prefix Expression Conversion Data Structures

›
#include<stdio.h> #include<string.h> #include<ctype.h> #include<stdlib.h> #define SIZE 100 char stack[SIZE]...
Wednesday, December 6, 2017

C++ program to swap two numbers using macros

›
#include<iostream.h> #include<conio.h> #define SWAP(a,b) {int temp; temp=a; a=b; b=temp;} void main() { clrscr(...
Tuesday, November 21, 2017

Deleting every Nth node from a Circular Linked list - Interview Question

›
Monday, November 13, 2017

Deleting every Nth node from a linked lint - Implementaion Using C - Interview Question

›
                             Scenario Consider   a game in which players are arranged circularly . The game has to be played in...
Saturday, November 4, 2017

FLAMES - Finding realtionship between You both Using C

›
//flames using C #include<stdio.h> int main() { char name1[25],name2[25]; register int i,j; static int count_fname,count_lna...
Thursday, November 2, 2017

Writing an Array of structures into a file & Reading a file into an Array of structures in c

›
                      Student Mark List Preparation #include<stdio.h> FILE *fp; struct stud {     int sid;     int sm[5];     int t...
Friday, October 20, 2017

Hackerrank Data Strcture Arrays - Left rotation solution in Java

›
Solution: import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution ...
›
Home
View web version

About Me

Tech Glimpse
View my complete profile
Powered by Blogger.