2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answers were Sorted based on User's Feedback
Answer / pallavi
pgm is wrong coz, main ws supposed to hav () and } is
missing at the end
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / 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 |
What is difference between %d and %i in c?
What is output redirection?
What is the difference between call by value and call by reference in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why Modern OS are interrupt driven?Give an example
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
how to find out the inorder successor of a node in a tree??
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
What does %c mean in c?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Describe the header file and its usage in c programming?
Why do we use return in c?