How is null defined in c?
No Answer is Posted For this Question
Be the First to Post Answer
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
How variables are declared in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Are there constructors in c?
Is it possible to execute code even after the program exits the main() function?
What are local static variables?
What is this pointer in c plus plus?
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); } }