What is difference between far and near pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the advantages and disadvantages of macros.
Is it valid to address one element beyond the end of an array?
what is the difference between structural,object based,object orientd programming languages?
What functions are used for dynamic memory allocation in c language?
Explain continue keyword in c
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What are two dimensional arrays alternatively called as?
What is c value paradox explain?
inline function is there in c language?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
read an array and search an element