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
What are logical errors and how does it differ from syntax errors?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
How would you obtain the current time and difference between two times?
What are extern variables in c?
What is malloc() function?
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
What is %s and %d in c?
Explain 'far' and 'near' pointers in c.
character array A[12] can hold
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
What is the best way to store flag values in a program?
Explain pointers in c programming?