Why does the call char scanf work?
No Answer is Posted For this Question
Be the First to Post Answer
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
Explain how do you determine the length of a string value that was stored in a variable?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
what is meant by flushll() in c programming?
What is the best way of making my program efficient?
What is the use of pragma in embedded c?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Which is best book for data structures in c?
What are the header files used in c language?
what are the compilation steps? ( i want inside the compiler )
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision