What is #define?
No Answer is Posted For this Question
Be the First to Post Answer
What are the difference between a free-standing and a hosted environment?
Why is c called "mother" language?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Explain what is page thrashing?
which is an algorithm for sorting in a growing Lexicographic order
while initialization of array why we use a[][2] why not a[2][]...?
how to find out the reverse number of a digit if it is input through the keyboard?
code for quick sort?
List out few of the applications that make use of Multilinked Structures?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
how to write a program which adds two numbers without using semicolon in c
What does %c do in c?