What is the use of bit field?
No Answer is Posted For this Question
Be the First to Post Answer
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
what is the difference between malloc() and calloc() function?
Is c object oriented?
What is indirect recursion? give an example?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
Why dont c comments nest?
What is %g in c?
How can I find out if there are characters available for reading?
What is #include in c?
5. distance conversion: 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
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above