what is compiler?
Answers were Sorted based on User's Feedback
Answer / abhishek
it is translater which convert hll in machine language.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / raj
It is translator which coverts high level code to object code
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sarjeet singh
it is a converted midel level language to machini language
| Is This Answer Correct ? | 1 Yes | 1 No |
how to swap two numbers in a linked list without exchanging the data but only the links?
5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3
what's the difference between function overloading and function overiding?
Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .
write a program that input four digit no and finds it is palindrome or not
Who wrote stl?
write a program to demonstrate,how constructor and deconstructor work under multilevel inheritance
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value
why & sign is used in copy constructor
Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }
Is stl open source?
why we are using the fork command?.. how it works?