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

11. Look at the Code:
#include<string.h>
void main()
{
char s1[]="abcd";
char s2[10];
char s3[]="efgh";
int i;
clrscr();
i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd"));
printf("%d",i);
}

What will be the output?
A)No output B) A Non Integer C)0 D) Garbage

Answer Posted / subha

answer:c

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When we use void main and int main?

1128


How can I change their mode to binary?

1185


What are the rules for identifiers in c?

1120


How can I change the size of the dynamically allocated array?

1205


How can I remove the trailing spaces from a string?

1120


Discuss the function of conditional operator, size of operator and comma operator with examples.

1213


In c programming language, how many parameters can be passed to a function ?

1167


In C language what is a 'dangling pointer'?

1241


How are Structure passing and returning implemented by the complier?

1227


Explain why c is faster than c++?

1125


What is the auto keyword good for?

1230


What is a sequential access file?

1242


How to delete a node from linked list w/o using collectons?

2824


In which header file is the null macro defined?

1401


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

1232