What is c variable?
# 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
What is the time and space complexities of merge sort and when is it preferred over quick sort?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
What is .obj file in c?
Distinguish between actual and formal arguments.
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is difference between structure and union in c?
application of static variables in real time
What is keyword in c?
Why do we need arrays in c?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.