implement OR gate without using any bitwise operator.
Difference between Function to pointer and pointer to function
What is a #include preprocessor?
HOW DO YOU HANDLE EXCEPTIONS IN C?
write a program to generate 1st n fibonacci prime number
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.
write a progrmm in c language take user interface generate table using for loop?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What is the heap?
Explain the term printf() and scanf() used in c language?
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
What is an volatile variable?