What is calloc malloc realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
can any one provide me the notes of data structure for ignou cs-62 paper
What are local variables c?
how can i calculate mean,median,mode by using c program
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
What does the && operator do in a program code?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
what will happen if you free a pointer twice after allocating memory dynamically ?