What is structure packing ?
Answers were Sorted based on User's Feedback
See: http://www.geocities.com/vijoeyz/faq/c/padding.txt
Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/
| Is This Answer Correct ? | 2 Yes | 5 No |
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
WAP to find that given no is small or capital
How does C++ help with the tradeoff of safety vs. usability?
what is the difference between NULL & NUL keywords in C?
What is n in c?
How can I find out how much memory is available?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
the operator for exponencation is a.** b.^ c.% d.not available
discuss the steps needed to get a program from source code to executable in a system?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream