what is the value of b
if a=5;
b=++a + ++a
Answer Posted / thakur
14
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What tq means in chat?
What does a pointer variable always consist of?
What is the use of c language in real life?
What is scope of variable in c?
can any one provide me the notes of data structure for ignou cs-62 paper
Write a program in c to replace any vowel in a string with z?
Explain 'bus error'?
State two uses of pointers in C?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
The statement, int(*x[]) () what does in indicate?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What is an lvalue in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Why do we use namespace feature?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?