Why clrscr is used after variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What is the purpose of #pragma directives in C?
What are the different types of endless loops?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is function in c with example?
What is the restrict keyword in C?
Why doesn't C support function overloading?
Meaning of () in c
write a program to display the array elements in reverse order in c language
What do you mean by Recursion Function?
Implement bit Array in C.