How many keywords (reserve words) are in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
Why do we need arrays in c?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Suggesting that there can be 62 seconds in a minute?
What standard functions are available to manipulate strings?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the translation phases used in c language?
What is 1f in c?
Explain about C function prototype?