What is the use of structure padding in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I change their mode to binary?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
What is the purpose of type declarations?
What are logical errors and how does it differ from syntax errors?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
is it possible to create your own header files?
What is signed and unsigned?
what are the facialities provided by you after the selection of the student.
Why does notstrcat(string, "!");Work?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?