7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answers were Sorted based on User's Feedback
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
What is the purpose of 'register' keyword in c language?
difference between string and array?
What is the deal on sprintf_s return value?
write a program to add two numbers of any size.....(remember any size)
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
what is object oriental programing?
what is difference between C and C++
c program for searching a student details among 10 student details
Explain what are multidimensional arrays?