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?

1240


What are two dimensional arrays alternatively called as?

1247


What does a pointer variable always consist of?

1160


What is the collection of communication lines and routers called?

1181


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

1194


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

1148


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

1375


How will you divide two numbers in a MACRO?

1188


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

1136


Explain heap and queue.

1143


State the difference between realloc and free.

1150


State the difference between x3 and x[3].

1169


Write a program to implement queue.

1176


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

1213


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

1241