2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);

Answer Posted / manoj kumar

36

Is This Answer Correct ?    71 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of static variable in c?

586


Tell me what is the purpose of 'register' keyword in c language?

603


a value that does not change during program execution a) variabe b) argument c) parameter d) none

682


What do you mean by a sequential access file?

617


What is c language and why we use it?

606






Is it better to use malloc() or calloc()?

639


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

704


What is #define?

563


What type of function is main ()?

574


What are header files in c programming?

644


a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler

603


What is %s and %d in c?

580


What is the code in while loop that returns the output of given code?

1272


How would you use the functions fseek(), freed(), fwrite() and ftell()?

689


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1114