What is data structure in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
write a program to copy the string using switch case?
Can a variable be both constant and volatile?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Why do we use pointer to pointer in c?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What is the use of header files?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What are predefined functions in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How can a string be converted to a number?
why Language C is plateform dependent