What is the size of empty structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the = symbol and == symbol?
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
write a program to print %d ?
How can I sort more data than will fit in memory?
When can a far pointer be used?
explain how do you use macro?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
sum of two integers values only other then integer it should print invalid input.
c program to input values in a table(using 2D array) and print odd numbers from them
What is a buffer in c?
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?