How can I do serial ("comm") port I/O?
is it possible to change the default calling convention in c ?
What is assert and when would I use it?
Can the size of an array be declared at runtime?
c program to manipulate x=1+3+5+...+n using recursion
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Taking an example,differentiate b/w loader and linker ?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How does pointer work in c?
why TCS selected more student in the software field from all institution.
What does it mean when a pointer is used in an if statement?
Is array name a pointer?
What is Lazy evaluation in C? Give an example.