main()
{
struct test
{
char c;
int i;
char m;
} t1;
printf("%d %d\n", sizeof(t1), sizeof(t1.c));
}
Whether there can be main inside another main?If so how does it work?
Is fortran faster than c?
how to write a data 10 in address location 0x2000
Why shouldn’t I start variable names with underscores?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
What is the purpose of macro in C language?
Explain how can I convert a number to a string?
what about "char *(*(*a[])())();"
what are bitwise shift operators?
how to copy a string without using c function
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
How do we declare variables in c?