Is multithreading possible in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why c language?
What are loops c?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What happens if header file is included twice?
What is the difference b/w main() in C language and main() in C++.
What's the best way of making my program efficient?
what is diffrence between string and character array?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
hat is a pointer?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?