name the language for writing c compiler?
Answers were Sorted based on User's Feedback
Answer / ashutosh tiwari
we can use assembly language or C itself to build a
compiler for C.
But assembly code will not be reusable so the compiler
developed for one system will not run on other system
| Is This Answer Correct ? | 3 Yes | 0 No |
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
what does " calloc" do?
How can you tell whether a program was compiled using c versus c++?
how many key words availabel in c a) 28 b) 31 c) 32
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is dynamic memory allocation?
Why do we use int main instead of void main in c?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
Explain what are the different data types in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }