main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}
No Answer is Posted For this Question
Be the First to Post Answer
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
What is array of structure in c programming?
Explain the term printf() and scanf() used in c language?
Define function pointers?
Are comments included during the compilation stage and placed in the EXE file as well?
Is an array parameter is always "by reference" ?
How do I determine whether a character is numeric, alphabetic, and so on?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
What is the difference between macros and inline functions?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What are header files in c?