Can the “if” function be used in comparing strings?
No Answer is Posted For this Question
Be the First to Post Answer
What is %lu in c?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
Is there any data type in c with variable size?
how can i get this by using for loop? * ** * **** * ******
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
Why do we use int main?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
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 the difference between while and do while?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
how should functions be apportioned among source files?
How is a null pointer different from a dangling pointer?