x=2 y=3 z=2
x++ + y++;
printf("%d%d" x,y);

Answers were Sorted based on User's Feedback



x=2 y=3 z=2 x++ + y++; printf("%d%d" x,y);..

Answer / guest

error

Is This Answer Correct ?    0 Yes 0 No

x=2 y=3 z=2 x++ + y++; printf("%d%d" x,y);..

Answer / himanshu

errors:declaration syntax missing
function call missing

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Code Interview Questions

abcdedcba abc cba ab ba a a

2 Answers  


Link list in reverse order.

8 Answers   NetApp,


#include<stdio.h> main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }

1 Answers  


main() { char a[4]="HELLO"; printf("%s",a); }

3 Answers   CSC,


main() { char *a = "Hello "; char *b = "World"; clrscr(); printf("%s", strcpy(a,b)); } a. “Hello” b. “Hello World” c. “HelloWorld” d. None of the above

4 Answers   Corporate Society, HCL,






main() { char *cptr,c; void *vptr,v; c=10; v=0; cptr=&c; vptr=&v; printf("%c%v",c,v); }

1 Answers  


program to Reverse a linked list

12 Answers   Aricent, Microsoft, Ness Technologies,


What is data _null_? ,Explain with code when u need to use it in data step programming ?

0 Answers   Abbott,


main() { int a=2,*f1,*f2; f1=f2=&a; *f2+=*f2+=a+=2.5; printf("\n%d %d %d",a,*f1,*f2); }

6 Answers  


How do you write a program which produces its own source code as its output?

7 Answers  


write a c-program to find gcd using recursive functions

5 Answers   HTC, Infotech,


#include<stdio.h> main() { char s[]={'a','b','c','\n','c','\0'}; char *p,*str,*str1; p=&s[3]; str=p; str1=s; printf("%d",++*p + ++*str1-32); }

1 Answers  


Categories