#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / drashti
3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how do you print only part of a string?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is #include stdio h?
What is c++ used for today?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is pragma in c?
What does it mean when a pointer is used in an if statement?
What is volatile variable how do you declare it?
In a switch statement, what will happen if a break statement is omitted?
What is "Duff's Device"?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Which is an example of a structural homology?
What are the 5 organizational structures?
Write a program which returns the first non repetitive character in the string?