Is there a built-in function in C that can be used for sorting data?
No Answer is Posted For this Question
Be the First to Post Answer
Why is a semicolon (;) put at the end of every program statement?
how to swap 2 numbers in a single statement?
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
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
what is the difference between declaration ,defenetion and initialization of a variable?
provide an example of the Group by clause, when would you use this clause
why 'c' is called middle level language.
two variables are added answer is stored on not for third variable how it is possible?
How is a macro different from a function?
Program to find larger of the two numbers without using if-else,while,for,switch
write a program to compare 2 numbers without using logical operators?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason