Tell us two differences between new () and malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
what is the advantage of software development
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
Is an array parameter is always "by reference" ?
How can we see the Expanded source code and compiled code for our source program in C?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
Write a program to know whether the input number is an armstrong number.
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
how to reverse string "Hello World" by using pointers only. Without any temp var
When should you not use a type cast?