Write a program to implement queue.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
Can the sizeof operator be used to tell the size of an array passed to a function?
Describe dynamic data structure in c programming language?
What is difference between array and pointer in c?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Why is c so important?
how to introdu5ce my self in serco
Can we access array using pointer in c language?
how to add numbers without using arithmetic operators.