WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS
CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS
TELL ME THE ANSWER
No Answer is Posted For this Question
Be the First to Post Answer
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
what is c?
Why static is used in c?
What is oops c?
what is void pointer?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What are the different types of control structures?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.