how does a general function , that accepts an array as a
parameter, "knows" the size of the array ?
How should it define it parameters list ?
No Answer is Posted For this Question
Be the First to Post Answer
How can I get the current date or time of day in a c program?
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
Explain what are multibyte characters?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
how to print this sereis 2 4 3 6 5..........?
write a program to display the array elements in reverse order in c language
write a program to display the frequency of each element in a given array in c language
What are the application of void data type in c?
How do you define structure?
What does 2n 4c mean?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
how to write a prog in c to convert decimal number into binary by using recursen function,