Why clrscr is used after variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Is a pointer a kind of array?
What are linker error?
how to implement stack work as a queue?
Explain command-line arguments in C.
Explain Function Pointer?
Where are the auto variables stored?
what is computer
Once I have used freopen, how can I get the original stdout (or stdin) back?
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.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
Write a program to print prime nums from 1-20 using c programing?