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...

#include<stdio.h>
#include<conio.h>
int main()
{
int a[4][4]={{5,7,5,9},
{4,6,3,1},
{2,9,0,6}};
int *p;
int (*q)[4];
p=(int*)a;
q=a;
printf("\n%u%u",p,q);
p++;
q++;
printf("\n%u%u",p,q);
getch();
return 0;
}

what is the meaning of this program?

Answer Posted / ajinkya

void main{int a=1;while(a++<=1)while(a++>2);}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can the “if” function be used in comparing strings?

1055


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

2225


Is there any possibility to create customized header file with c programming language?

1065


What do you know about the use of bit field?

1049


Why is c called c?

1026


What is the purpose of 'register' keyword?

1101


code for replace tabs with equivalent number of blanks

2167


Does c have an equivalent to pascals with statement?

1007


Explain how can you tell whether a program was compiled using c versus c++?

1104


Do you know the difference between exit() and _exit() function in c?

1062


What is variable in c example?

1076


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1558


What will be your course of action for a push operation?

1112


Differentiate call by value and call by reference?

974


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1700