What is an operator?


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

Post New Answer

More C Interview Questions

what is data structure

5 Answers   Maveric, TCS,


who developed c and why he developed c?

5 Answers  


how to find the binary of a number?

10 Answers   Infosys,


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

0 Answers   Wilco,


What is meant by recursion?

0 Answers   ADP,






program to find a smallest number in an array

15 Answers   Microsoft, Sony,


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  


what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.

1 Answers  


How do we declare variables in c?

0 Answers  


What is %d used for?

0 Answers  


Categories