void main()
{
int i=5;
printf("%d",i+++++i);
}
Post New Answer View All Answers
Tell me can the size of an array be declared at runtime?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What does 4d mean in c?
What does a pointer variable always consist of?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Which programming language is best for getting job 2020?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What does char * * argv mean in c?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
write a program to find the given number is prime or not
How macro execution is faster than function ?
How can you return multiple values from a function?
What is difference between && and & in c?
Explain function?