what is use of malloc and calloc?
Why is event driven programming or procedural programming, better within specific scenario?
Are there any problems with performing mathematical operations on different variable types?
Where local variables are stored in c?
what are the stages of compilation
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What is union in c?
What is .obj file in c?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
What is the size of enum in bytes?
how to capitalise first letter of each word in a given string?
Write a program to print prime nums from 1-20 using c programing?