Explain About fork()?
No Answer is Posted For this Question
Be the First to Post Answer
What is union and structure in c?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
how to find the given number is prime or not?
What are formal parameters?
Tell me can the size of an array be declared at runtime?
what is the difference between unix os and linux os
When should the register modifier be used? Does it really help?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
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
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
What is the hardest programming language?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?