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 |
Differentiate between functions getch() and getche().
how to find the kth smallest element in the given list of array elemnts.
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What are the different types of pointers used in c language?
Using which language Test cases are added in .ptu file of RTRT unit testing???
related to rdbms query .
What is action and transformation in spark?
print 1-50 with two loop & two print Statement
What are the features of the c language?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
Why is c called c not d or e?