What is the meaning of
?



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

Post New Answer

More C Interview Questions

what r the cpu registers r ther?

1 Answers  


How to write a program to receive an integer & find its octal equivalent by using for loop?

1 Answers   Google,


Explain what are multibyte characters?

1 Answers  


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.

0 Answers  


Program to find largest of three numbers without using comparsion operator?

3 Answers  


Differentiate between ordinary variable and pointer in c.

1 Answers  


What is double pointer?

1 Answers  


two variables are added answer is stored on not for third variable how it is possible?

3 Answers  


What are the types of operators in c?

1 Answers  


What are the key features of C?

6 Answers  


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); }

4 Answers   Vector,


why do we use pointer instead directly acessing the data?

2 Answers  


Categories