What is the use of getchar() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between far and near ?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Why c is procedure oriented?
what are the compilation steps? ( i want inside the compiler )
How can we see the Expanded source code and compiled code for our source program in C?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
write a program to find the largest and second largest integer from an array
Is null always equal to 0(zero)?
when to use : in c program?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]