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

44.what is the difference between strcpy() and memcpy()
function?
45.what is output of the following statetment?
46.Printf(“%x”, -1<<4); ?
47.will the program compile?
int i;
scanf(“%d”,i);
printf(“%d”,i);
48.write a string copy function routine?
49.swap two integer variables without using a third
temporary variable?
50.how do you redirect stdout value from a program to a file?
51.write a program that finds the factorial of a number
using recursion?

Answer Posted / sachin patil

44. strcpy copy the string while memcpy copy the memory
contains of locations.

46.fffffff0

49. int a = 5;
int b = 10;
a = a+b;
b = a-b;
a = a-b;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

swap 2 numbers without using third variable?

1175


Explain what is output redirection?

1244


explain what are actual arguments?

1140


can we change the default calling convention in c if yes than how.........?

2592


What does char * * argv mean in c?

1117


What is the difference between scanf and fscanf?

1341


Simplify the program segment if X = B then C ← true else C ← false

3064


What is the most efficient way to store flag values?

1228


What are operators in c?

1075


What are types of functions?

1078


Explain how does free() know explain how much memory to release?

1135


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

1305


What are the different categories of functions in c?

1178


In C language, a variable name cannot contain?

1325


Explain the use of keyword 'register' with respect to variables.

1096