int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
How the C program can be compiled?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
difference between function & structure
What is the difference between array and pointer?
What happens if a header file is included twice?
how logic is used
Write a program for print infinite numbers
Why do we use int main?
What is an lvalue in c?
what is use of malloc and calloc?
What is pass by reference in functions?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }