a linear linked list such that the link field of its last node points to the first node instead of containing NULL
a) linked list
b) circular linked list
c) sequential linked list
d) none
How do you determine a file’s attributes?
Explain is it better to bitshift a value than to multiply by 2?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
write a program to swap two variables a=5 , b= 10 without using third variable
Why cd or dvd are round why not square.
discuss the steps needed to get a program from source code to executable in a system?
Write a program to generate prime factors of a given integer?
What is the difference between call by value and call by reference in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
is c language is a object oreinted language?