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 are threads ? why they are called light weight processes ? what is the relation between process and threads ?
How main function is called in c?
How do we open a binary file in Read/Write mode in C?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
What is typedf?
Why doesnt the call scanf work?
Is it cc or c in a letter?
What are local static variables?
Define circular linked list.
Why do some versions of toupper act strangely if given an upper-case letter?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
How can you increase the size of a dynamically allocated array?