How does selection sort work in c?
No Answer is Posted For this Question
Be the First to Post Answer
. 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
What is the use of the sizeof operator?
Explain how do you search data in a data file using random access method?
How arrays can be passed to a user defined function
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
How can I find the modification date and time of a file?
What is the use of getch ()?
What are register variables in c?
What does != Mean in c?
Can we add pointers together?
write a program that print itself even if the source file is deleted?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }