Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Un-Answered Questions { C }

What are high level languages like C and FORTRAN also known as?

1114


What are two dimensional arrays alternatively called as?

1136


What does a pointer variable always consist of?

1045


What is the collection of communication lines and routers called?

1068


What is the size of array float a(10)?

1098


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

1043


Which node is more powerful and can handle local information processing or graphics processing?

1268


How will you divide two numbers in a MACRO?

1084


By using C language input a date into it and if it is right?

1028


Explain heap and queue.

1019


State the difference between realloc and free.

1038


State the difference between x3 and x[3].

1059


Write a program to implement queue.

1074


#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); }

1113


#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); }

1140