What does c value mean?


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

Post New Answer

More C Interview Questions

#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;

8 Answers   TCS,


Explain why c is faster than c++?

0 Answers  


how to write a program which adds two numbers without using semicolon in c

2 Answers  


write a program to print the one dimensional array.

1 Answers  






What are the application of void data type in c?

0 Answers  


what do you mean by inline function in C?

0 Answers   IBS, TCS,


List the different types of c tokens?

0 Answers  


What is the difference b/w main() in C language and main() in C++.

7 Answers  


how can i get this by using for loop? * ** * **** * ******

3 Answers   Excel,


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

0 Answers   TATA, TCS,


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


Categories