Why does not c have an exponentiation operator?
No Answer is Posted For this Question
Be the First to Post Answer
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
Can you mix old-style and new-style function syntax?
What is Full Form of C and Why We use C
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
How can I invoke another program or command and trap its output?
What is use of integral promotions in c?
What is the difference between #include and #include 'file' ?
what is the difference between declaration ,defenetion and initialization of a variable?
Why is c faster?
largest Of three Number using without if condition?
Is it possible to execute code even after the program exits the main() function?
Is calloc better than malloc?