What is the difference between functions getch() and getche()?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between formatted&unformatted i/o functions?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
can v write main() { main(); } Is it true?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
which type of aspect you want from the student.
What are loops in c?
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.
How can I remove the trailing spaces from a string?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6