Explain how do you determine whether to use a stream function or a low-level function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between realloc() and free()
Explain what is the difference between functions getch() and getche()?
Magic square
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
What is the use of extern in c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is meant by int main ()?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Explain what are linked list?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
i need all types of question paper releted to "c" and other language.
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none