2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / hari
x=2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a static variable in c?
What do you mean by Recursion Function?
What are the types of data types and explain?
Explain the use of 'auto' keyword in c programming?
What is the importance of c in your views?
What is the difference between a function and a method in c?
What is a constant and types of constants in c?
What is the difference between mpi and openmp?
Write a program to print fibonacci series using recursion?
What is the advantage of c?
What is indirection? How many levels of pointers can you have?
What is difference between function overloading and operator overloading?
Do character constants represent numerical values?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is structure padding in c?