What is the main difference between calloc () and malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the value of e raised to power x using while loop
How many levels deep can include files be nested?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
what is dangling pointer?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Program to write some contents into a file using file operations with proper error messages.
Is reference used in C?
Explain what’s a signal? Explain what do I use signals for?
WAP to find that given no is small or capital
Write a program for Overriding.
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none