What are high level languages like C and FORTRAN also known as?
What are two dimensional arrays alternatively called as?
What does a pointer variable always consist of?
What is the collection of communication lines and routers called?
What is the size of array float a(10)?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Which node is more powerful and can handle local information processing or graphics processing?
How will you divide two numbers in a MACRO?
By using C language input a date into it and if it is right?
Explain heap and queue.
State the difference between realloc and free.
State the difference between x3 and x[3].
Write a program to implement queue.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }