Why do we use c for the speed of light?
No Answer is Posted For this Question
Be the First to Post Answer
C,c++, Java is all are structural oriented or procedure oriented language..?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What is the value of uninitialized variable in c?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
Tell me the use of bit field in c language?
What are structure types in C?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Can an array be an Ivalue?
What is the use of pragma in embedded c?
what different between c and c++
Explain what is the difference between functions abs() and fabs()?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }