p*=(++q)++*--p when p=q=1 while(q<=6)
No Answer is Posted For this Question
Be the First to Post Answer
What does the characters “r” and “w” mean when writing programs that will make use of files?
Explain the advantages of using macro in c language?
Can you write the function prototype, definition and mention the other requirements.
Are the variables argc and argv are local to main?
What is function prototype in c with example?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
When a c file is executed there are many files that are automatically opened what are they files?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Is fortran still used in 2018?
What is dynamic dispatch in c++?
How main function is called in c?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }