What will be the output of
x++ + ++x?
Answer Posted / vaibhav
if x=4 then o/p will be 9
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What are the features of c languages?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Is c high or low level?
How can I convert a number to a string?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is an array in c?
What does %p mean?
What does typedef struct mean?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is pass by value in c?
The difference between printf and fprintf is ?
What is an lvalue?
Difference between strcpy() and memcpy() function?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.