Describe the order of precedence with regards to operators in C.
No Answer is Posted For this Question
Be the First to Post Answer
what is meant by c
Why isn't it being handled properly?
What is console in c language?
What is the symbol indicated the c-preprocessor?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
What is the meaning of int *x[]();?
What is main function in c?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is calloc()?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What is the right type to use for boolean values in c? Is there a standard type?