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

main()
{
printf(5+"Vidyarthi Computers");
}

Answer Posted / vijay

ouptput:-
vidya

Is This Answer Correct ?    1 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are keywords c?

1003


What are the advantages and disadvantages of a heap?

1173


What's the best way of making my program efficient?

1060


write a program fibonacci series and palindrome program in c

998


Once I have used freopen, how can I get the original stdout (or stdin) back?

1052


What are the types of unary operators?

1155


What is the explanation for cyclic nature of data types in c?

1165


Explain is it valid to address one element beyond the end of an array?

1176


What are different types of pointers?

1040


What is memcpy() function?

1076


What is the maximum no. of arguments that can be given in a command line in C.?

1108


Can 'this' pointer by used in the constructor?

1062


In a byte, what is the maximum decimal number that you can accommodate?

1100


Can a function argument have default value?

1116


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1392