2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / vignesh1988i
x will be 36....
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
Explain what is the use of a semicolon (;) at the end of every program statement?
how many key words availabel in c a) 28 b) 31 c) 32
Where is volatile variable stored?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain what is a const pointer?
c program for searching a student details among 10 student details
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
all c language question
Why is main function so important?
Is c is a middle level language?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
what is the significance of static storage class specifier?
How can you find out how much memory is available?
What is wrong with this statement? Myname = 'robin';