What is function definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me is null always defined as 0(zero)?
what is the meaning of 'c' language
who is the founder of c
19 Answers College School Exams Tests, HP,
What is the use of define in c?
how to add two numbers without using arithmetic operators?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Write a program to know whether the input number is an armstrong number.
Explain the use of #pragma exit?
How can I determine whether a machines byte order is big-endian or little-endian?
write a program to display all prime numbers
Is main an identifier in c?
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