WHAT IS LOW LEVEL LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / avinash
LOW LEVEL LANGUAGE IS THE LANGUAGE OR INTRUCTION FOLLOWED
BY THE MACHINE.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / priyanka pal
it is also known as machine language. it is the language
only understand by the computer. computer understand the
machine language i.e, in the form of 0's and 1's also called
the binary form.
| Is This Answer Correct ? | 0 Yes | 0 No |
tell me the full form of c?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
write a program to display the array elements in reverse order in c language
What does double pointer mean in c?
What is 2c dna?
write a program to concatenation the string using switch case?
What is the use of static variable in c?
What are local variables c?
Explain the red-black trees?
how to find string length wihtout using c function?
write a program of bubble sort using pointer?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..