Solve This (? + ? + ?=30)
If 1111=R, 2222=T, 3333=E, 4444=N Then 5555=?
Guess the Hindi Muhawara from the following whatsapp Emoticons?
Sweet, Medicine, Film, Girl, City, Car, Place, Doggy all are name same, guess which word it is?
A girl is blind, deaf, dumb and uneducated too. A boy loves her. How would he propose without touching her?
Four Question, One Answer: One River Name, One Flower Name, One Film Name, One Actress Name?
Guess me who am I, I am the first on earth, the second in heaven...
Which Indian cricketer is known as "Brown Bradman"?
What was the nickname for a 1913 British Act of Parliament that enabled suffragettes on hunger strike to be.............
On 1 July 1967, what was the first official colour broadcast transmitted on television in the UK?
for(printf("1\n");0;);
Try the following code in C
for (i=0; i<1; i++) { printf("%d", i); }
1 12 123 1234 12345
for (a=1; a<=100; a++) printf ("%d\n", a * a);
1*8+1= 9 12*8+2=98 123*8+3=987 1234*8+4=9876 12345*8+5=98765 123456*8+6=987654 1234567*8+7=9876543 12345678*8+8=9876543 2 123456789*8+9=987654 321
struct marks { int a:1; int b:2; }; int main() { struct marks obj={1,6}; printf("%d %d\n",obj.b,obj.a); }