Cau u say the output....?
Answer / pranav
void main()
{
int i=1;
printf("%d %d %d",i++,++i,i++);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
How we print the table of 2 using for loop in c programing?
What is data _null_? ,Explain with code when u need to use it in data step programming ?
How can I Create a C program in splitting set of characters to specific subsets. Example: INPUT SET OF CHARACTERS: Therefore, my dear brothers and sisters, stand firm. Let nothing move you. Always give yourselves fully to the work of the Lord, because you know that your labor in the Lord is not in vain. SPLIT INTO HOW MANY CHARACTERS PER SUBSETS: 10 OUTPUT: Therefore, my dear b rothers an d sisters, stand fir m. Let not hing move you. Alway s give you rselves fu lly to the work of t he Lord, b ecause you know that your labo r in the L ord is not in vain.
main(){ unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); }
Design an implement of the inputs functions for event mode
Find your day from your DOB?
15 Answers Accenture, Microsoft,
void main() { int i=5; printf("%d",i+++++i); }
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail
main() { printf("\nab"); printf("\bsi"); printf("\rha"); }
How will u find whether a linked list has a loop or not?
What are segment and offset addresses?