What is new line escape sequence?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a program to reverse a given number in c language?

0 Answers  


what do you mean by enumeration constant?

0 Answers  


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


What is the difference between the local variable and global variable in c?

0 Answers  


What is variables in c?

0 Answers  






what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


Explain the binary height balanced tree?

0 Answers  


write a addition of two no. program with out using printf,scanf,puts .

4 Answers  


int i=0,j; j=++i + ++i ++i; printf(" %d",j);

2 Answers   ME,


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

0 Answers  


What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;

12 Answers   TCS,


What are the different types of control structures in programming?

0 Answers  


Categories