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

How to add two numbers with using function?

4 Answers  


find largest element in array w/o using sorting techniques.

3 Answers   Zycus Infotech,


What is hash table in c?

0 Answers  


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

0 Answers   Aspiring Minds,


How can I do graphics in c?

0 Answers  






for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }

1 Answers  


Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?

1 Answers   Infosys,


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


What are the types of i/o functions?

0 Answers  


Can you explain the four storage classes in C?

0 Answers   TCS,


#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?

7 Answers   Intel,


What is a pragma?

0 Answers  


Categories