Describe static function with its usage?
No Answer is Posted For this Question
Be the First to Post Answer
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
what do you mean by inline function in C?
What is the difference between CV and Resume ?
what are two categories of clint-server application development ?
Is double link list a linear data structure? If Yes, Why?If No, Why?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What is the use of getchar() function?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
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?
How do shell structures work?
What is the use of #include in c?
In a byte, what is the maximum decimal number that you can accommodate?