int main()
{
unsigned i=1;
signed j=-1;
if(i<j)
printf("true");
else
printf("false");
return 0;
}
#include<stdio.h>
int main()
{
printf , ("%d",123);
return 0;
}
int main()
{
float a;
printf("%d",sizeof(a+sizeof(a));
return 0;
}
int main()
{
"hello"+printf("hello");
return 0;
}
int main()
{
printf("hello"+"guest");
return 0;
}
int main()
{
printf("customer"+printf("hello"));
return 0;
}
int main()
{
int a,b;
scanf("%d%denter value of a and b",&a,&b);
printf("%d%d",a,b);
return 0;
}
int main()
{
int a,b;
scanf("entervalue of a and b%d%d",&a,&b);
printf("a=%d b=%d",a,b);
return 0;
}
int main()
{
char ch=1;
while(ch<=255)
{
printf("%d",ch);
ch++;
}
return 0;
}
int main()
{
int i=1;
for( ; i<10 ; printf("%d",i));
i++;
return 0;
}
int main()
{
int i;
for(i=1;i<=2;i++) {
switch(i) {
case 1:
printf("case 1");
continue;
printf("case 1 again");
break;
case 2:
printf("case 2);
break;
}
}
}
int main()
{
const void * vp;
int * ip;
int * const p=ip;
vp =ip; // ist line
ip=vp; // 2nd line
ip=(void *)vp; //3rd line
*(const int **)&ip=vp; // 4 th line
return 0;
}
which line will give error ?
Suppose someone makes a program and save file by name of " test .c" After this what would be the next extension of file before making .exe file ?