What is character set?
No Answer is Posted For this Question
Be the First to Post Answer
Is c easier than java?
What is f'n in math?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
how can i print "hello"
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
How does #define work?
What is modifier & how many types of modifiers available in c?
What is meant by errors and debugging?
Explain what is the best way to comment out a section of code that contains comments?
What is the difference between if else and switchstatement
Where we use clrscr in c?