#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answers were Sorted based on User's Feedback
What is a const pointer, and how does it differ from a pointer to a const?
What is declaration and definition in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Can we assign string to char pointer?
How can you determine the maximum value that a numeric variable can hold?
how can make variable not in registers
Why can't I perform arithmetic on a void* pointer?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
why i join syntel?
23 Answers ABC, Syntel, TCS,
How can I open files mentioned on the command line, and parse option flags?
What is data types?