What does d mean?
No Answer is Posted For this Question
Be the First to Post Answer
What are the main characteristics of c language describe the structure of ac program?
What is cohesion in c?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
Can you assign a different address to an array tag?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
how does printf function work
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
How do you prevent buffer overflows in C?
Write a program in c to replace any vowel in a string with z?
what is the difference between structural,object based,object orientd programming languages?
What does 1f stand for?
Add Two Numbers Without Using the Addition Operator