explain what is a newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Can we access array using pointer in c language?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
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 progam to compare the string using switch case?
What is #include called?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is a spanning Tree?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What is a const pointer in c?