What's the total generic pointer type?
No Answer is Posted For this Question
Be the First to Post Answer
what are the difference between ANSI C and Let Us c and Turbo C
main() { clrscr(); } clrscr();
Is boolean a datatype in c?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
How will you write a code for accessing the length of an array without assigning it to another variable?
what will be the output for the following main() { printf("hi" "hello"); }
Explain what is a const pointer?
what is the use of pointers
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
how do you redirect stdout value from a program to a file?
write a program to interchange the value between two variable without using loop
Why is the code below functioning. According to me it MUST NOT.