Is it better to use malloc() or calloc()?
No Answer is Posted For this Question
Be the First to Post Answer
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Who is the main contributor in designing the c language after dennis ritchie?
Explain what is wrong with this statement? Myname = ?robin?;
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Write a program to generate random numbers in c?
What are header files in c programming?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
Is a house a mass structure?
what are the general concepts of c and c++
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
How can I sort more data than will fit in memory?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20