What does & mean in scanf?
No Answer is Posted For this Question
Be the First to Post Answer
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
write a program for even numbers?
What is nested structure in c?
can anyone suggest some site name..where i can get some good data structure puzzles???
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
How are variables declared 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....
What is the process to create increment and decrement stamen in c?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is the scope of an external variable in c?
write a c program to add two integer numbers without using arithmetic operator +