what are the difference between ANSI C and Let Us c and Turbo C
Answer Posted / ashutosh tiwari
Let Us C is a book on C language by Yahswant Kanetkar
Turbo C is editor and compiler for C language
ANSI C is the standard for C compiler design, development,
C syntaxing, C code writing style, memory, stack
development in C etc.
| Is This Answer Correct ? | 16 Yes | 4 No |
Post New Answer View All Answers
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
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
What are data types in c language?
What are linker error?
How to explain the final year project as a fresher please answer with sample project
What are the 3 types of structures?
how do you programme Carrier Sense Multiple Access
How can I find the modification date and time of a file?
What should malloc(0) do?
What is the function of this pointer?
Write a program to know whether the input number is an armstrong number.
I have a varargs function which accepts a float parameter?
can any one provide me the notes of data structure for ignou cs-62 paper
Why is python slower than c?
What is union in c?