Explain the bubble sort algorithm.
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is the function of volatile in c language?
What is pass by reference in functions?
What is the purpose of sprintf() function?
What is "Hungarian Notation"?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is array of structure in c programming?
What are types of functions?
What is the best way to store flag values in a program?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
why arithmetic operation can’t be performed on a void pointer?
how c source file in converted to exe file