#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / tamil selvam
i value is 2.
j value is 7.
| Is This Answer Correct ? | 19 Yes | 9 No |
Post New Answer View All Answers
write an algorithm to display a square matrix.
Why should I prototype a function?
What is pointer to pointer in c?
What is the function of multilevel pointer in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is the process of writing the null pointer?
How do you initialize pointer variables?
What is string function in c?
Can you please compare array with pointer?
Is c easy to learn?
What is a method in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
How many main () function we can have in a project?
What is the heap in c?