hello freinds next week my interview in reliance,nybody has
an idea about it intervew questions..so tell


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

Post New Answer

More C Interview Questions

write a program structure to find average of given number

1 Answers  


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


What is void main () in c?

0 Answers  


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


What is the scope of local variable in c?

0 Answers  






What is operator precedence?

0 Answers  


how can use subset in c program and give more example

0 Answers  


What are reserved words?

0 Answers  


How will you delete a node in DLL?

0 Answers   GrapeCity,


What is the use of typedef in structure in c?

0 Answers  


How we can insert comments in a c program?

0 Answers  


struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]

3 Answers  


Categories