can any one provide me the notes of data structure for
ignou cs-62 paper
No Answer is Posted For this Question
Be the First to Post Answer
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
Why is C called a middle-level language?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
What is the function of volatile in c language?
difference between c and c++
How do you define CONSTANT in C?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
How do I get a null pointer in my programs?
What is difference between structure and union with example?