#include<stdio.h>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}
Answer Posted / m.karthiga
3 6
| Is This Answer Correct ? | 19 Yes | 15 No |
Post New Answer View All Answers
Explain heap and queue.
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is the difference between procedural and functional programming?
Why doesnt this code work?
What is main () in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Write a factorial program using C.
What are global variables?
How can you avoid including a header more than once?
Explain what is gets() function?
Do you know the use of 'auto' keyword?
Explain what are multibyte characters?
Explain what math functions are available for integers? For floating point?
Write a program to print ASCII code for a given digit.
In a header file whether functions are declared or defined?