why should i select you?
Answers were Sorted based on User's Feedback
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
int x=sizeof(!5.856); What will value of variable x?
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Convert the following expression to postfix and prefix (A+B) * (D-C)
Write a code of a general series where the next element is the sum of last k terms.
How reliable are floating-point comparisons?
How many keywords are there in c?
How can I write functions that take a variable number of arguments?
Difference between constant pointer and pointer to a constant.
What is the difference between declaring a variable and defining a variable?