What is calloc malloc realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
c program to compute AREA under integral
What is operator precedence?
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
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.
Calculate 1*2*3*____*n using recursive function??
triangle number finding program...
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is #define?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
difference between Low, Middle, High Level languages in c ?