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
When would you use a pointer to a function?
What is assert and when would I use it?
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
Why main is not a keyword in c?
Write a program to swap two numbers without using third variable in c?
Why array starts with index 0
How can I convert a number to a string?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
Why isnt there a numbered, multi-level break statement to break out
Does free set pointer to null?
What are volatile variables in c?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?