which header file contains main() function in c?
Answer Posted / vignesh1998i
that header file will not be given or revealed to the user , since there are possibilites to manipulate it........ in that file....
thank u
| Is This Answer Correct ? | 5 Yes | 18 No |
Post New Answer View All Answers
State two uses of pointers in C?
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Differentiate between ordinary variable and pointer in c.
diff between exptected result and requirement?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is difference between function overloading and operator overloading?
Explain b+ tree?
What is hungarian notation? Is it worthwhile?
What is the data segment that is followed by c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is 'bus error'?
What are nested functions in c?
hi, which software companys will take,if d candidate's % is jst 55%?
What is a built-in function in C?