How can I delete a file?
No Answer is Posted For this Question
Be the First to Post Answer
Why is void main used?
write a program to sort the elements in a given array in c language
What are the __date__ and __time__ preprocessor commands?
what is the difference between. system call and library function?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Define Spanning-Tree Protocol (STP)
What is the difference between malloc calloc and realloc in c?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
How does the assert() function work?
Where can I get an ansi-compatible lint?