Crack Master 2014 screenshot |
Information about resetting and configuring Mobile phones (Java, Android, Symbian etc), educational articles especially for programming in C, C++ and Java and more about Computers and operating systems
Crack Master 2014 final round App
Labels:
2014
,
algorithms
,
app
,
coding
,
college
,
crack
,
Crackmaster
,
decode
,
decryption
,
encode
,
engineering
,
final
,
game
,
MACE
,
Mar Athanasius
,
master
,
round
,
Takshak
,
Thakshak
C Program Using 8086 Interrupts to Restrict Mouse Pointer Into a Circle of Given Center and Radius
C Program Using 8086 Interrupts to Restrict Mouse Pointer Into a Circle of Given Center and Radius. The mouse ponter will be restricted to a circle of user specified center and radius using the interrupt 33 of 8086 in c complier. I have tested this program in Turbo C compiler.
Mouse pointer restricted into a circle in Turbo C |
#include<stdio.h> #include<conio.h> #include<dos.h> #include<graphics.h>
How to Hard Reset Samsung Galaxy Note 2 (N7100)
Samsung Galaxy Note II N7100 |
- Switch off the phone first. (If your phone is problem is not turning on, you can try only this method of reseting)
- Wait for some seconds (~30s).
- Now press and hold the following buttons together : Home button, power button and volume up button.
- Keep these three buttons pressed together until you see the Samsung logo.
- You will be led to the menu.
- You can use volume up or down buttons to highlight an option and power button to select that option.
C Program to Display and Set System Time and Date Using 8086 Interrupts
This is a C Program to Display and Set System Time and Date Using 8086 Interrupts. Interrupt number 21 (in hexadecimal) is used to:
Output of c Program to get and set system time and date |
- Get System time
- Set System time
- Get System Date
- Set System Date
To Get system date:
- Call interrupt 0x21 (hexadecimal)
- AH (higher byte of accumulator) should be made equal to 2A (hex) before calling interrupt
Output:
C Program To Implement Circular Linked List
C Program to implement circular linked list.
#include<stdio.h> #include<malloc.h> #include<stdlib.h>
Labels:
$ccpp
,
c program
,
C++
,
circular
,
code
,
compiled
,
delete
,
ends
,
insert
,
linked
,
linked list
,
list
,
programming
,
source code
,
two
C Program For Insertion And Deletion In Heap
C program code for Insertion and Deletion in a Heap.
#include <stdio.h> #include<stdlib.h> int arr[100],n; void display(); void insert(int num,int loc); void del(int num);
C Program To Represent Directed or Undirected Graph Using Adjacency Matrix
C program to represent directed or undirected graph using Adjacency matrix.
#include<stdio.h> #include<conio.h> #define max 20 int adj[max][max]; //Adjacency matrix int n; //Denotes number of nodes in the graph void main() {
Labels:
$ccpp
,
adjacency
,
c program
,
code
,
create
,
data structure
,
directed
,
graph
,
graphs
,
How to
,
matrices
,
matrix
,
programming
,
represent
,
representation
,
undirected
,
using
C Program to Display SCAN and ASCII Codes of Keys on Keyboard Using 8086 Interrupt
Output (ASCII and SCAN code) when a is pressed |
Algorithm, C and C++ Programs to find Closure From Functional Dependencies
In this post we will see how to find closure of an attribute or a set of attributes. Before learning how to get closure, we should first know what is a closure. Closure of a given set C is the set of attributes that are functionally determined by the set C under the set of functional dependencies F. There can be closure for any set. Every attribute in the set whose closure is to be found out, will be a member of its closure set C+ also. Consider an example:
Subscribe to:
Posts
(
Atom
)