What is c system32 taskhostw exe?
No Answer is Posted For this Question
Be the First to Post Answer
how to copy a string without using c function
Explain the difference between exit() and _exit() function?
What is stack in c?
Explain bitwise shift operators?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Why calloc is better than malloc?
How can I list all of the predefined identifiers?
if we take a number as a char then can we manipulate(add, subtract) on this number
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Define circular linked list.
Explain the difference between malloc() and calloc() in c?
where does malloc() function get the memory?