C Programming and Technical undefined

int c,a=2;
c=++a + ++a;
printf("%d",c);

Read Solution (Total 21)

C Other Question

#include
void main()
{
int i;
for(i=0;i<10;i++)
{
if(i<5)
continue;
else
break;
printf("%d",i);
}
}
if 1995 is the given number

you write the code to add like this
1+9+9+5=24
2+4=6

final result is 6;

write code without for loop and don't take unique digit numbers like 9999 ....

solve this programming puzzle...