write a C and C++ programme to implement the
A,bubble sort
B,quick sort
C,insertion sort
D,sequential search
E,binary search
how should functions be apportioned among source files?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
write a program that explain #define and # undef directive
what is level of tree if leaf node is at level 4.please explain.
Is r written in c?
Explain high-order and low-order bytes.
The __________ attribute is used to announce variables based on definitions of columns in a table?
Determine if a number is a power of 2 at O(1).
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
How can you find the day of the week given the date?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply