#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 ؟؟؟
Answers were Sorted based on User's Feedback
Explain what is the difference between the expression '++a' and 'a++'?
What are the advantages of c language?
What are qualifiers in c?
Describe static function with its usage?
What are the uses of null pointers?
Explain what is meant by high-order and low-order bytes?
how can be easily placed in TCS.
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Can a binary search tree be used as an index? If yes, how? Explain
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
all c language question
How to print "Hi World" without using semi colon?