#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / stephen john
i got the answer is 3,4,4.
why?
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
Did c have any year 2000 problems?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
How can I call a function with an argument list built up at run time?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are multidimensional arrays?
What is main () in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is structure and union in c?
What is c programing language?
How can I read a binary data file properly?
Is flag a keyword in c?
Explain what does a function declared as pascal do differently?
Why does everyone say not to use gets?
In C language, a variable name cannot contain?