2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / snurfy
x=1;..khud se pata laga lo..par answer to yahi rahega...aur ye us wale logic se hoga...jo sir ne us samay padhaya tha...tab tum sab so rahe the,,...ab aur neend lo class m...tab bola tha uth jaao...tab to samjh aaya nhi...ab kya khak aayega....ab to khelo rummy...!!..ab to ek hi tarika h ans pata karne ka...snurf language padho..aur suno...ise majak mat samjhna..bhavishy ka sawal h...:P:P
| Is This Answer Correct ? | 8 Yes | 5 No |
Post New Answer View All Answers
State the difference between x3 and x[3].
Are the variables argc and argv are local to main?
What is the difference between volatile and const volatile?
Write a c program to demonstrate character and string constants?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How do you declare a variable that will hold string values?
What are the main characteristics of c language describe the structure of ac program?
What is the difference between union and anonymous union?
Why c is called object oriented language?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What are external variables in c?
What is a stream?
What is "Hungarian Notation"?
Why do we write return 0 in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }