Write a C program on Centralized OLTP, Decentralized OLTP
using locking mechanism, Semaphore using locking mechanism,
Shared memory, message queues, channel of communication,
sockets and a simple program on Saving bank application
program using OLTP in IPC?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Why should I use standard library functions instead of writing my own?
What is a pointer on a pointer in c programming language?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
How to compare array with pointer in c?
write a program to print sum of each row of a 2D array.
Give differences between - new and malloc() , delete and free() ?
what is linkage error when it occurs in c program
Explain do array subscripts always start with zero?
What is the size of enum in c?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
write a program to insert an element at the specified position in the given array in c language