please send me papers for Dy. manager IT , PNB.
it would be a great help for me.
No Answer is Posted For this Question
Be the First to Post Answer
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What is the relationship between pointers and data structure?
while initialization of array why we use a[][2] why not a[2][]...?
What do the functions atoi(), itoa() and gcvt() do?
Write a program in c to replace any vowel in a string with z?
#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); }
is it possible to create your own header files?
Write a progarm to find the length of string using switch case?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Method Overloading exist in c ?
How does C++ help with the tradeoff of safety vs. usability?
Convert the following expression to postfix and prefix (A+B) * (D-C)