How can I implement sets or arrays of bits?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Does c have function or method?

0 Answers  


write a c program for swapping two strings using pointer

0 Answers  


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.

0 Answers  


What is the use of void pointer and null pointer in c language?

0 Answers  






What is this infamous null pointer, anyway?

0 Answers  


how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

0 Answers  


What is string function c?

0 Answers  


with out using main how to execute the program?

2 Answers  


What is structure packing ?

2 Answers   HP,


#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }

9 Answers   Burning Glass,


Explain how can I manipulate strings of multibyte characters?

0 Answers  


Categories