What is operator precedence?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Find the highest of three numbers and print them using ascending orders?
Why is %d used in c?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
what is structuer?
how to find out the union of two character arrays?
How to delete a node from linked list w/o using collectons?
What is modifier & how many types of modifiers available in c?
what is purpose of fflush(stdin) function
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2