what are the difference between ANSI C and Let Us c and Turbo C
Answers were Sorted based on User's Feedback
Answer / srinivas
hello,boss ansic provided only for standards of c language.
but turboc followed this rules + its own some rules and
developed clanguge .
| Is This Answer Correct ? | 37 Yes | 7 No |
Answer / sovit
ANSI C is an International Standard for C Language. Turbo C
is a compiler provided by Borland Corp for ANSI C. It
extends ANSI C with its own libraries ex: conio.h etc. Turbo
C has an IDE where you code your C Program easily.
| Is This Answer Correct ? | 28 Yes | 4 No |
Answer / 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 |
Answer / jagan
C is designed for UNIX only, which was not supported by other OS, that is why its enhanced version came out named as ANSI C.
| Is This Answer Correct ? | 2 Yes | 4 No |
What is the advantage of an array over individual variables?
What are the back slash character constants or escape sequence charactersavailable in c?
I have seen function declarations that look like this
Which is an example of a structural homology?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
String concatenation
pierrot's divisor program using c or c++ code
Write a program to print the prime numbers from 1 to 100?
pascal triangle program
What is the difference between null pointer and wild pointer?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
int x=sizeof(!5.856); What will value of variable x?