What are the features of the c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the value of c?
int far *near * p; means
Disadvantages of C language.
The differences between Windows XP and Windows Visa
What is the difference between realloc() and free()
how c source file in converted to exe file
What is a substring in c?
What is character constants?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
write a program to print infinte number
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }