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 |
In C programming, how do you insert quote characters (‘ and “) into the output screen?
what is pointer ? what is the use of pointer?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
count the numbers between 100 and 300, that star with 2 and ends with 2
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What does the format %10.2 mean when included in a printf statement?
Is stack a keyword in c?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Why doesnt long int work?
Write a program that his output * *** *****