What is a char c?


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

Post New Answer

More C Interview Questions

Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.

2 Answers   Infosys,


What are terms in math?

0 Answers  


WHAT IS INT?

8 Answers   Accenture,


void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?

8 Answers   Wipro,


plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.

1 Answers  






Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

0 Answers  


void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }

3 Answers  


which one is highest Priority in c? a)=,b)+,c)++,d)==

4 Answers  


Why do we use int main instead of void main in c?

0 Answers  


what is the difference between definition and declaration? give me some examples.

2 Answers   TCS,


Explain the use of 'auto' keyword in c programming?

0 Answers  


will the program compile? int i; scanf(ā€œ%dā€,i); printf(ā€œ%dā€,i);

3 Answers  


Categories