How can I direct output to the printer?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a built-in function in C that can be used for sorting data?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is volatile in c language?
What are actual arguments?
how can i calculate mean,median,mode by using c program
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
What is the difference between calloc() and realloc()?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Give differences between - new and malloc() , delete and free() ?