Why is c called c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain indirection?
What is I ++ in c programming?
a program that can input number of records and can view it again the record
Is flag a keyword in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
what is the difference b/w NULL and null?
Can I initialize unions?
what are the interview question's in the language 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
1. main() { printf("%d",printf("HelloSoft")); } Output?
What is New modifiers?