Describe explain how arrays can be passed to a user defined function
No Answer is Posted For this Question
Be the First to Post Answer
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Write a program that his output 1 12 123
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
How many levels of pointers can you have?
Dont ansi function prototypes render lint obsolete?
Can we replace the struct function in tree syntax with a union?
Why preprocessor should come before source code?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Write code for finding depth of tree
Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .
4 Answers State Bank Of India SBI,
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
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