What are structure members?
No Answer is Posted For this Question
Be the First to Post Answer
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
How can I avoid the abort, retry, fail messages?
how to find turn around time in operating system?
How to create struct variables?
What is far pointer in c?
Explain what are header files and explain what are its uses in c programming?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Output for following program using for loop only * * * * * * * * * * * * * * *
How can I open files mentioned on the command line, and parse option flags?
What is the difference between union and structure in c?