What does 1f stand for?
No Answer is Posted For this Question
Be the First to Post Answer
How can you call a function, given its name as a string?
How can I open a file so that other programs can update it at the same time?
int i=10; printf("%d %d %d", i, i=20, i);
What is the use of parallelize in spark?
What is the use of extern in c?
What is meant by type casting?
Can you return null in c?
What do you mean by Recursion Function?
what are the difference between ANSI C and Let Us c and Turbo C
What is console in c language?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
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