Write a program to print factorial of given number using recursion?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
What is the value of h?
What is the use of sizeof?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
How can my program discover the complete pathname to the executable from which it was invoked?
How can I change their mode to binary?
What is a file descriptor in c?
Where we use clrscr in c?
who did come first hen or agg
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
What is #include stdlib h?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }