In C programming, how do you insert quote characters (‘ and “) into the output screen?


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

Post New Answer

More C Interview Questions

#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


When can you use a pointer with a function?

0 Answers  


What are .h files and what should I put in them?

3 Answers  


What is return in c programming?

0 Answers  


main() { int i=400,j=300; printf("%d..%d"); }

13 Answers   ME,






What is the difference between text and binary i/o?

0 Answers  


When should a type cast be used?

0 Answers  


Why are all header files not declared in every c program?

0 Answers  


Is there a way to jump out of a function or functions?

0 Answers  


what is use of loop?

10 Answers   Infosys,


Mention four important string handling functions in c languages .

0 Answers  


What is the use of a static variable in c?

0 Answers  


Categories