How are 16- and 32-bit numbers stored?
No Answer is Posted For this Question
Be the First to Post Answer
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
how can u print a message without using any library function in c
any string of bits of length 'n' represents a unique non- negative integer between.............?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Why should I prototype a function?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Is it better to use malloc() or calloc()?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Why do we use pointer to pointer in c?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }