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 / siyaoberoi
46. m getting the result FFF0..
plz correct me if m wrong..
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is wrong with this initialization?
Write a program to print ASCII code for a given digit.
Can we declare variables anywhere in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is function and its example?
How was c created?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Differentiate fundamental data types and derived data types in C.
Write a program to check prime number in c programming?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is meant by keywords in c?
How can I find the modification date of a file?
In C language what is a 'dangling pointer'?
What are pointers? What are different types of pointers?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..