int i=0,j;
j=++i + ++i ++i;
printf("
%d",j);
Answers were Sorted based on User's Feedback
What is static volatile in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
What are the advantage of c language?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Explain what is page thrashing?
Program to find the sum of digits of a given number until the sum becomes a single digit
What functions are in conio h?
What is the difference between CV and Resume ?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain the difference between strcpy() and memcpy() function?
User define function contain thier own address or not.