Difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best way to comment out a section of code that contains comments?
What do you mean by keywords in c?
What is C language ?
wt is d full form of c
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write down the program to sort the array.
How will you find a duplicate number in a array without negating the nos ?
how to print value of e(exp1)up to required no of digits after decimal?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
How to throw some light on the b tree?
What is the difference between void main() and int main()?