Why is structure important for a child?
No Answer is Posted For this Question
Be the First to Post Answer
how to find turn around time in operating system?
What are bit fields? What is their use?
What are high level languages like C and FORTRAN also known as?
1. main() { printf("%d",printf("HelloSoft")); } Output?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Why use int main instead of void main?
What are qualifiers and modifiers c?
what is printf
Explain what header files do I need in order to define the standard library functions I use?
Explain what is the stack?
What is a ternary operator in c?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............