which header file contains main() function in c?

Answer Posted / ankith.v

There is no header file for main function

Is This Answer Correct ?    11 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a double c?

601


Why c is called free form language?

581


How important is structure in life?

602


What is the difference between NULL and NUL?

741


What are c header files?

593






What is the general form of #line preprocessor?

596


How is = symbol different from == symbol in c programming?

624


Can you please compare array with pointer?

625


i have a written test for microland please give me test pattern

2201


Tell me what is the purpose of 'register' keyword in c language?

628


What are types of preprocessor in c?

627


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;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2727


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1629


Explain goto?

726


What are pointers? What are different types of pointers?

636