what is the use of ‘auto’ keyword?
Is array name a pointer?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
How can I recover the file name given an open stream?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
How can I copy just a portion of a string?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What are the types of i/o functions?
What does %c do in c?
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 is static function in c?
What is .obj file in c?