WHAT IS FLOAT?
Answers were Sorted based on User's Feedback
Answer / jayant
ts a primitive data type used to store floating point values
like 12.009
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / santosh
float is a data type in which we store the floating point
numbers
| Is This Answer Correct ? | 2 Yes | 0 No |
What happens if you free a pointer twice?
Which is an example of a structural homology?
WHAT IS ABSTRACT DATA TYPE
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<n1-1;i++) { if( !( (a1[i]>a1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }
Program to find the absolute value of given integer using Conditional Operators
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are terms in math?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is the purpose of macro in C language?
Is there a way to switch on strings?