Answer Posted / k.rangaswamy
This is the one of the language which is used to interact
with the hardware in the efficiency manner.This is actually
a procedure oriented language and also we can call it as
High level language.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of getchar() function?
How can you convert integers to binary or hexadecimal?
What is clrscr in c?
What are c preprocessors?
What is a nested formula?
How can I get back to the interactive keyboard if stdin is redirected?
What is build process in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How main function is called in c?
while initialization of array why we use a[][2] why not a[2][]...?
What is zero based addressing?
What is infinite loop?
Can you please explain the difference between malloc() and calloc() function?
What is the purpose of scanf() and printf() functions?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }