Differentiate between calloc and malloc.
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
How can I rethow can I return a sequence of random numbers which dont repeat at all?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What is the purpose of void in c?
What is I ++ in c programming?
sir, i cannot find the way how to write aprogram by using array on queue
What is use of null pointer in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
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 are the main characteristics of c language describe the structure of ac program?