ATM machine and railway reservation class/object diagram
No Answer is Posted For this Question
Be the First to Post Answer
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Why n++ execute faster than n+1 ?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
why effort estimation is important?
how to write hello word without using semicolon at the end?
Write a program to swap two numbers without using the third variable?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What is operator promotion?
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }