What is the purpose of type declarations?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
how to multiply two number taking input as a string (considering sum and carry )
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
Differentiate between static and dynamic modeling.
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
What is variable in c with example?
What are different types of operators?
what is the most appropriate way to write a multi-statement macro?
What is a buffer in c?
How is = symbol different from == symbol in c programming?