What is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
what defference between c and c++ ?
difference between native and cross compilers
Does c have circular shift operators?
What is console in c language?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Do you have any idea how to compare array with pointer in c?
which type of aspect you want from the student.
why return type of main is not necessary in linux
Without Computer networks, Computers will be half the use. Comment.
What is the difference between int main and void main?
#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); }
What are the parts of c program?