How does selection sort work in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
what does keyword ‘extern’ mean in a function declaration?
How can I get random integers in a certain range?
What is zero based addressing?
What is the size of structure pointer in c?
What is call by reference in functions?
What is array of structure in c programming?
wat is the difference between array and pointer?
write a program to print infinte number
code for concatination of 2 strings with out using library functions?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
what are the files which are automatically opened when a c file is executed?