m=++i&&++j(||)k++
printf("%d"i,j,k,m)
Answer / aravind
error
relational operators can't be assaigned, they are used for just conditions.
| Is This Answer Correct ? | 4 Yes | 12 No |
is c language is a object oreinted language?
Explain zero based addressing.
How can you determine the size of an allocated portion of memory?
Can static variables be declared in a header file?
what are the stages of compilation
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Why is structure padding done in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What should malloc(0) do?
State two uses of pointers in C?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }