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 the difference between the local variable and global variable in c?
What is c definition?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Which is better oop or procedural?
I have seen function declarations that look like this
How do you print only part of a string?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
How can I use a preprocessorif expression to ?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is the difference between array and pointer in c?
What is const volatile variable in c?
What is the concatenation operator?
Explain built-in function?
Is flag a keyword in c?
Explain what are bus errors, memory faults, and core dumps?