Suggesting that there can be 62 seconds in a minute?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Differentiate between ordinary variable and pointer in c.
How many keywords (reserve words) are in c?
Is reference used 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 the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
Why doesn't C support function overloading?
What is call by reference in functions?
What is #line used for?
How to find the usage of memory in a c program
write a method for an array in which it can display the largest n next largest value.