#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answers were Sorted based on User's Feedback
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What is the size of a union variable?
Explain the difference between ++u and u++?
What is the memory allocated by the following definition ? int (*x)[10];
Explain logical errors? Compare with syntax errors.
The difference between printf and fprintf is ?
out put of printf(ā%dā,printf(ram));
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Write a C function to search a number in the given list of numbers. donot use printf and scanf
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is property type c?
What is the use of typedef in c?