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 |
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
write a program to rearrange the array such way that all even elements should come first and next come odd
Why c is procedure oriented?
Whether there can be main inside another main?If so how does it work?
Eight queens puzzle
What is main () in c?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Expand the following LKB BKL FFG
What is the Difference between Class and Struct?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1