what are bit fields? What is the use of bit fields in a
structure declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the difference between = and == symbols in c programming?
Why can't we initialise member variable of a strucutre
with out using main how to execute the program?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is the use of printf() and scanf() functions?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
Why is %d used in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Can an array be an Ivalue?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration