Explain how can I convert a string to a number?
No Answer is Posted For this Question
Be the First to Post Answer
When is a “switch” statement preferable over an “if” statement?
Is main is user defined function?
what is the difference b/w NULL and null?
How is a null pointer different from a dangling pointer?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
Can you pass an entire structure to functions?
what is the difference between static variable and register variable?
Is a pointer a kind of array?
What is getch () for?
why we are using semicolon at the end of printh statment
how to find turn around time in operating system?