Which are low level languages?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What does a run-time "null pointer assignment" error mean?

2 Answers  


64/square(4)

1 Answers  


Dont ansi function prototypes render lint obsolete?

0 Answers  


What are directives in c?

0 Answers  


WHAT IS FLOAT?

3 Answers  






Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.

6 Answers   Wipro,


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

6 Answers   Qualcomm,


What is null character in c?

0 Answers  


Where is c used?

0 Answers  


Explain what is wrong in this statement?

0 Answers  


What is the meaning of && in c?

0 Answers  


which do you prefer C or Pascal?

1 Answers  


Categories