What is the meaning of
?
Answer / Abhishek Saxena
" is an escape sequence character in C programming language that represents a single quote (').
| Is This Answer Correct ? | 0 Yes | 0 No |
what r the cpu registers r ther?
How to write a program to receive an integer & find its octal equivalent by using for loop?
Explain what are multibyte characters?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
Program to find largest of three numbers without using comparsion operator?
Differentiate between ordinary variable and pointer in c.
What is double pointer?
two variables are added answer is stored on not for third variable how it is possible?
What are the types of operators in c?
What are the key features of C?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
why do we use pointer instead directly acessing the data?