How can I sort a linked list?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What are the advantages of Macro over function?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
what is software?
What do you know about the use of bit field?
State two uses of pointers in C?
Explain what is the benefit of using #define to declare a constant?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is function in c with example?
3. 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
What is the difference b/w Structure & Union?
Which one would you prefer - a macro or a function?