What are the different flags in C? And how they are useful?
And give example for each in different consequences?
Answer / archana
\a , \f, \r, \n , \b are the flags
\a means audible bell
\n= new line
\r= next page
| Is This Answer Correct ? | 1 Yes | 2 No |
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
code for quick sort?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
LOGIC OF Bodmas?
What is %d called in c?
What is a stream?
wtite a program that will multiply two integers in recursion function
How is pointer initialized in c?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What is difference between arrays and pointers?
write a program which counts a product of array elements lower than 10.