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 |
Explain how do you convert strings to numbers in c?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
what are the 10 different models of writing an addition program in C language?
program to print circle structure
What is calloc malloc realloc in c?
Explain how do you print an address?
What is the maximum no. of arguments that can be given in a command line in C.?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What is a rvalue?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }