What are data types in c language?
Can you apply link and association interchangeably?
What are inbuilt functions in c?
What is the difference between array and structure in c?
The difference between printf and fprintf is ?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
How can you allocate arrays or structures bigger than 64K?
What does return 1 means in c?
What are c identifiers?
What is the use of header?
Explain that why C is procedural?
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 meant by 'bit masking'?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.