State the difference between realloc and free.
No Answer is Posted For this Question
Be the First to Post Answer
what do structure language means?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Is c an object oriented programming language?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is extern variable in c with example?
Describe how arrays can be passed to a user defined function
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
C language questions for civil engineering
Are global variables static in c?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?