What is array of structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to establish connection with oracle database software from c language?
What are 'near' and 'far' pointers?
how to make program without <> in libray.
Explain what does it mean when a pointer is used in an if statement?
What is chain pointer in c?
Tell me when would you use a pointer to a function?
what is the difference between char * const and const char *?
Why double pointer is used in c?
Explain what is the stack?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }