Why clrscr is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of empty structure in c?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
coding for Fibonacci.?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
whats the use of header file in c?
Define circular linked list.
Write program to remove duplicate in an array?
Why use int main instead of void main?
what is the use of macro program
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
What is the use of sizeof?
How can this be legal c?