What is the condition that is applied with ?: Operator?
No Answer is Posted For this Question
Be the First to Post Answer
how to add our own function in c library please give details.?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Is reference used in C?
write a program to rearrange the array such way that all even elements should come first and next come odd
Write code for atoi(x) where x is hexadecimal string.
say the following declaration is correct nr not. int b=a,n=0;
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
How would you write qsort?
read a number & print all its devisors using c-program?
Why & is used in c?
What is the meaning When we write "#include" what is # and what does include does there???
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }