hi any body pls give me company name interview conduct "c"
language only


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

Post New Answer

More C Interview Questions

Why we use conio h in c?

0 Answers  


11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage

7 Answers   Accenture,


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Write a program to generate the Fibinocci Series

0 Answers   TISL,


What is string length in c?

0 Answers  






how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0

4 Answers   Wipro,


Explain what header files do I need in order to define the standard library functions I use?

0 Answers  


int x=sizeof(!5.856); What will value of variable x?

2 Answers  


how to find anagram without using string functions using only loops in c programming

0 Answers  


which operator having highest precedence? a.)+ b.)++ c.)= d.)%

4 Answers  


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


What is meant by initialization and how we initialize a variable?

0 Answers  


Categories