2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
Answer Posted / kadamab
36
| Is This Answer Correct ? | 15 Yes | 5 No |
Post New Answer View All Answers
I need testPalindrome and removeSpace
#include
What is the purpose of main() function?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
to find the closest pair
What are the features of c language?
What is the use of a semicolon (;) at the end of every program statement?
How do I send escape sequences to control a terminal or other device?
What is wrong with this declaration?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is the difference between array and linked list in c?
What are register variables in c?
What is the difference between constant pointer and constant variable?
how to find anagram without using string functions using only loops in c programming
How can I write functions that take a variable number of arguments?
Explain what math functions are available for integers? For floating point?