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 the defrenece between structure and union
Can two or more operators such as and be combined in a single line of program code?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
i want to know the procedure of qualcomm for getting a job through offcampus
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Write a program to print fibonacci series using recursion?
what is the main use of c where it can use the c
What is && in c programming?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
How many main () function we can have in a project?
The statement, int(*x[]) () what does in indicate?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);