what are the difference between ANSI C and Let Us c and Turbo C

Answers were Sorted based on User's Feedback



what are the difference between ANSI C and Let Us c and Turbo C..

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

what are the difference between ANSI C and Let Us c and Turbo C..

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

what are the difference between ANSI C and Let Us c and Turbo C..

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

what are the difference between ANSI C and Let Us c and Turbo C..

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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?

3 Answers  


What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


How to set a variable in the environment list?

1 Answers  


being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?

1 Answers   TCS,


Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

4 Answers   Accenture,






What does d mean?

0 Answers  


Which is the memory area not included in C program? give the reason

0 Answers   IBM, TCS,


What is the heap?

0 Answers  


What is an lvalue in c?

0 Answers  


What does c mean before a date?

0 Answers  


how to generate sparse matrix in c

3 Answers  


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Lucent,


Categories