WHAT IS HIGH LEVEL LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / avinash
HIGH LEVEL HAS THE FLEXIBILITY AND CAPACITY TO UNDERSTAND
THE PROGRAME AND INSTRUCTIONS OF THE USER AND MACHINE
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kavya
A programming language such as C, FORTRAN, or Pascal that enables a programmer to write programs that are more or less independent of a particular type of computer. Such languages are considered high-level because they are closer to human languages.
| Is This Answer Correct ? | 4 Yes | 1 No |
What is || operator and how does it function in a program?
Sir i need notes for structure,functions,pointers in c language can you help me please
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
What is the difference between array and structure in c?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
how to add two numbers without using arithmetic operators?
difference between c and c++
WAP to accept first name,middle name & last name of a student display its initials?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
which of 'arrays' or 'pointers' are faster?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }