Answer Posted / sandeep kumar yadav
Because whatever you will give me i will do on given time, and will always increase the name of your company in the market because your company will be increase in the market then defenetilly my performance will be also increse.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you mean by a local block?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
number of times a digit is present in a number
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
write a program to display all prime numbers
can we have joblib in a proc ?
With the help of using classes, write a program to add two numbers.
What is difference between function overloading and operator overloading?
Why static is used in c?
What is the difference between #include
What is return type in c?
Write a program to implement queue.
What is merge sort in c?