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?

1176


What are two dimensional arrays alternatively called as?

1191


What does a pointer variable always consist of?

1107


What is the collection of communication lines and routers called?

1129


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

1147


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

1100


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

1328


How will you divide two numbers in a MACRO?

1141


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

1087


Explain heap and queue.

1096


State the difference between realloc and free.

1096


State the difference between x3 and x[3].

1113


Write a program to implement queue.

1131


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

1161


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

1189