1000 Ques
1000 Ques
typedef struct{
char *;
nodeptr next;
} * nodeptr;
what does nodeptr stand for?
ans:
3.struct list{
int x;
struct list *next;
}*head;
the struct head.x =100
Ans: above is correct / wrong
expl: Before using the ptr type struct variable we
have to give memory
to that .And also when ever the struct variable is ptr
then we access the
members by "->" operator.
4.
main()
{
int i;
i=1;
i=i+2*i++;
printf(%d,i);}
ans: 4
5.main()
{
FILE *fp1,*fp2;
fp1=fopen("one","w")
fp2=fopen("one","w")
fputc('A',fp1)
fputc('B',fp2)
fclose(fp1)
fclose(fp2)}
a.error b. c. d.
ans: no error. But It will over writes on same file.
*****n
6.#include<malloc.h>
char *f()
{char *s=malloc(8);
strcpy(s,"goodbye");}
main()
{
char *f();
printf("%c",*f()='A');}
o/p=?
ans. 12 6 11
8. main()
{
int a=10,b=5, c=3,d=3;
if (a<b)&&(c=d++)
printf(“%d %d %d %d”, a,b,c,d);
else
printf("%d %d %d %d”, a,b,c,d);
}
9. main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
ans: 13 11 11
10. main()
{
int *p, *c, i;
i = 5;
p = (int*) (malloc(sizeof(i)));
printf("\n%d",*p);
*p = 10;
printf("\n%d %d",i,*p);
c = (int*) calloc(2);
printf("\n%d\n",*c);
}
main()
{
int *p, *c, i;
i = 5;
p = (int*) (malloc(sizeof(i)));
printf("\n%d",*p);
*p = 10;
printf("\n%d %d",i,*p);
c = (int*) calloc(2,2);
printf("\n%d\n",*c);
}
ans: garbage, 5, 10, 0 (malloc gives garbage and calloc
initializes with zeros)
ans: 12 6 11
12. main()
{
enum _tag{ left=10, right, front=100, back};
printf("left is %d, right is %d, front is %d, back is
%d",left,right,front,back);
}
13. main()
{
int a=10,b=20;
a>=5?b=100:b=200;
printf("%d\n",b);
}
15. main()
{
char s[] = "Bouquets and Brickbats";
printf("\n%c, ",*(&s[2]));
printf("\n%s, ",s+5);
printf("\n%s,",s);
printf("\n%c",*(s+2));
}
ans: u,
ets and Brickbats,
Bouquets and Brickbats,
u
16. main()
{
struct s1
{
char *str;
struct s1 *ptr;
};
static struct s1 arr[] = { {"Hyderabad",arr+1},
{"Bangalore",arr+2},
{"Delhi",arr}
};
struct s1 *p[3];
int i;
for(i=0;i<=2;i++)
p[i] = arr[i].ptr;
printf("%s\n",(*p)->str);
printf("%s\n",(++*p)->str);
printf("%s\n",((*p)++)->str);
ans: Bangalore
Delhi
Delhi
17. main()
{
char *p = "hello world!";
p[0] = 'H';
printf("%s",p);
}
18. main()
{
int x=1,y=1;
while( (x > 0) && (y > 0) )
{
printf("%16d%16d",x,y);
x += y;
y += x;
}
}
ans: here x = x+y and y = x+2y when y goes beyond
32767 it falls in –ve side and loop breaks
22. main()
{
char c[]={ " enter" , "first" , "print" ,
"new" }.;
char **cp[]={c+3, c+2, c+1, c};
char ***cpp[]=cp;
printf("%s", ++*cp);
printf("%s",--*++cp);
}
ans:
main()
{
int i,j;
for(i=1;i<=5;i++)
{
printf("\n");
for(j=i;j>0;j--)
printf("%d",i);
}
while( y > 0 )
{
if( y%2 == 1)
answer = answer * z;
y=y/2;
z=z*z;
}
return answer;
}
ans: z power y
ans:
main()
{
int i,j,k;
k = 1;
for(i=1;i<=5;i++)
{
for(j=i;j>0;j--)
printf("%d",k++);
printf("\n");
}
ans:
main()
{
int i,j=0,k;
char st = 'x';
char en = 'y';
char p[]="abxabcdyxabcdabcydabcdxabycd";
char *str;
for(i=0;p[i]!='\0';i++)
{
if(p[i] == st)
break;
}
if(p[i]=='\0')
{
printf("\n starting character not found\n");
exit(0);
}
str = &p[i];
k=i;
while(p[++i]!='\0')
if(p[i] == en)
j=i;
if(j==0)
printf(" ending character not found\n");
else
for(;k<=j;k++)
printf("%c",*str++);
}
29. How do you write a program which produces its own source code
as its output?
How can I find the day of the week given the date?
Why doesn't C have nested functions?
What is the most efficient way to count the number of bits which
are set in a value?
ans: K. Ritchie
How can I convert integers to binary or hexadecimal?
ans: K. Ritchie
How can I call a function, given its name as a string?
ans: function pointers
How do I access command-line arguments?
How can I return multiple values from a function?
ans: using pointer or structures
How can I invoke another program from within a C program?
ans: using system function
How can I access memory located at a certain address?
How can I allocate arrays or structures bigger than 64K?
How can I find out how much memory is available?
How can I read a directory in a C program?
How can I increase the allowable number of simultaneously open
files?
What's wrong with the call "fopen("c:\newdir\file.dat", "r")"?
30. main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
ans: 11 16
31. int x;
main()
{
int x=0;
{
int x=10;
x++;
change_value(x);
x++;
Modify_value();
printf("First output: %d\n",x);
}
x++;
change_value(x);
printf("Second Output : %d\n",x);
Modify_value();
printf("Third Output : %d\n",x);
}
Modify_value()
{
return (x+=10);
}
change_value()
{
return(x+=1);
}
ans:
First output : 12
Second output : 1
Third output : 1
32. main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
ans: 57 94
33. main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
{
char *p1="Name";
char *p2,*p3;
p2=(char *)malloc(20);
p3=p2;
while(*p2++=*p1++);
printf("%s\n",p3);
}
34. main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
ans: 5 20 1
ans:
10 5
10 5
36. main()
{ char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
ans:
Samco Systems
amco Systems
37. main()
{ char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
38. main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,"Ramco");
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}
40. main()
{
int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
}
ans: 1, 2
41. main()
{
struct
{
char a[3];
int b;
}x;
char *cp;
printf(“%d %d”,sizeof(cp),sizeof(x));
}
42. main()
{
int p=3,q=4;
q = shw(&p);
printf("%d %d",p,q);
}
ans: 10 garbage
ans: (x<<3-x)
44. main()
{
char *s1 = "hello",*s2 ="abce";
strcpy(s1,"");
s2[0] = s1[0];
printf("%d%d",strlen(s1),strlen(s2));
}
ans: 0 0
45. main()
{
int i=10;
printf("%d%d%d",i,i++,++i);
}
47. main()
{
char *x="new";
char *y="dictonary";
char *t;
void swap (char * , char *);
swap (x,y);
printf("(%s, %s)",x,y);
char *t;
t=x;
x=y;
y=t;
printf("-(%s, %s)",x,y);
}
void swap (char *x,char *y)
{
char *t;
y=x;
x=y;
y=t;
}
48. main()
{
char p[]="string";
char t;
int i,j;
for(i=0,j=strlen(p);i<j;i++)
{
t=p[i];
p[i]=p[j-i];
p[j-i]=t;
}
printf("%s",p);
}
49. main()
{
int i=10;
printf("%d %d %d",i,++i,i++);
}
50. main()
{
void f(int,int);
int i=10;
f(i,i++);
}
void f(int i,int j)
{
if(i>50)
return;
i+=j;
f(i,j);
printf("%d,",i);
}
51. main()
{
void f(int,int);
int i=10;
f(i,++i);
}
void f(int i,int j)
{
if(i>50)
return;
i+=j;
f(i,j);
printf("%d,",i);
}
52. main()
{
char *s="hello world";
int i=7;
printf("%.*s",i,s);
}
ans: hello w
53. main()
{
int a,b;
printf("enter two numbers :");
scanf("%d%d",a,b);
printf("%d+%d=%d",a,b,a+b);
}
ans: 4,2
55. main()
{
char *x="String";
char y[] = "add";
char *z;
z=(char *) malloc(sizeof(x)+sizeof(y)=1);
strcpy(z,y);
strcat(z,x);
printf("%s+%s=%s",y,x,z);
}
ans: add+String=addString
57. main()
{
enum number { a=-1, b= 4,c,d,e};
printf("%d",e);
}
ans: 7
58. main()
{
int i=0;
for(i=0;i<20;i++)
{
switch(i)
{
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default: i+=4;
break;}
printf("%d,",i);
}
}
59. main()
{
int i, count, x=1;
for(i=0, count=0;i<16;i++)
if( !(x&(1<<i)) )
count++;
printf("%d",count);
}
60. main()
{
int i, count, x=1;
for(i=0, count=0;i<16;i++)
if(x&(1<<i) )
count++;
printf("%d",count);
}
main() main()
{{
int fact; int fact=0
long int x; for(i=1;i<=n;i++)
fact=factoral(x); fact=fact*i;
}}
62. main()
{
char str[5]="hello";
if(str==NULL) printf("string null");
else printf("string not null");
}
ans: string not null
65. main()
{
int x, *y;
x = y;
printf(“%d”,x);
}
67. main()
{
char a[10]="hello";
strcpy(a,'\0');
printf("%s",a);
}
ans: K.Ritchie
70. main()
{
a=2;
b=3;
x=SUM(a,b)*2;
printf("x=%d\n",x);
}
ans: 8
71. number(int i)
{
number++;
printf("%d\n",number);
}
main()
{
static int i=0;
number(i);
}
72. main()
{
unsigned char i;
int sum;
for(i=0; i<300; i++)
sum+ = i;
printf("\nSum = %d\n", sum);
}
main()
{
int i=10;
printf("i=%d\n", i);
fn(&i);
printf("i=%d\n", i);
}
ans: i=10
i=10
ans:
x = x+y;
y = x-y;
x = x-y;
x = x^y;
y = x^y;
x = x^y;
x = x*y;
y = x/y;
x = x/y;
75. Code 1 :
for(i=0; i<1000; i++)
for(j=0; j<100; j++)
x = y;
Code 2 :
for(i=0; i<100; i++)
for(j=0; j<1000; j++)
x = y;
76. main()
{
int a[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, i, x=10, temp;
for(i=0; i<x; i++){
temp = a[i];
a[i] = a[x-i-1];
a[x-i-1] = temp;
}
77. main(0
{
int i = 1;
fork();
fork();
printf("\ni = %d\n", i+1);
}
ans: m = 2, n = 3
79. main()
{
int i=10;
fork();
fork();
fork();
printf("%d”,i);
}
main()
{
int m;
m=2*f(3,g(4,5));
printf("\n m is %d",m);
}
ans: m is 26
81. main()
{
char a[10];
strcpy(a,"\0");
if (a==NULL)
printf("\a is null");
else
printf("\n a is not null");
}
82. main()
{
char a[5]="hello";
printf("%s",a);
}
83. main()
{
unsigned int x=-1;
int y;
y = ~0;
if(x == y)
printf("same");
else
printf("not same");
}
main()
{
char *g="string";
strcpy(gxxx(),g);
g = gxxx();
strcpy(g,"oldstring");
printf("The string is : %s",gxxx());
}
86. main()
{
char p[]="String";
int x=0;
if(p=="String")
{
printf("Pass 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
else
{
printf("Fail 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
87. A code which had some declarations of some data items. There
were a couple of normal data items (char, int..) and some
pointers as well and a malloc call. You have to find the total
memory taken up in the stack (Hint: Pointers and all are
allocated in heap, not in stack, so don’t count them).Also in most
of these questions, they were specifying that the OS was 32 bit.
92. main()
{
int i=7;
i = i++*i++;
printf("%d\n",i);
i=7;
printf("%d %d\n",i ,i++*i++);
i=2;
printf("%d %d\n" ,i, i++*++i*i++*i++);
i=1;
printf("%d %d %d\n", i, i++*i++, i++*i++*++i*i+
+);
i=1;
printf("%d %d %d\n" ,i, i++*i++, i++*i++*++i*i+
+*i++*++i);
}
ans: 51
9 56
6 160
7 30 32
9 56 1120
93. main()
{
int d ;
int i=10;
d =sizeof(++i);
printf("%d",d);
}
ans: 2
99. main()
{
char *str;
str=(char*)malloc(20*sizeof(char));
strcpy(str,"test");
strcat(str,'!');
printf("%s",str);
}
101. main()
{
int i;
if(i=0)
printf(" Hell ");
else
printf("Heaven");
}
ans: Heaven
102. main()
{
int i,j;
for(i=0,j=0;i<5,j<25;i++,j++);
printf("%d %d",i,j);
}
ans: Far pointers are 4 bytes in size and local pointers are
2 bytes in size. important: i saw in a previous question
paper of accenture which is in the chetana database,
some lady wrote that size of an integer in C is 2 bytes and
for C++ it is 4 bytes. This is absurd.The size of types is
entirely dependent on the compiler used.for DOS Turbo C
sizeof int is 2 and float is 4 bytes for windows borland
C,C++ size of int is 4 bytes for linux gcc, size of int is 2
bytes. All these depends on the Operating system.Please
keep this in mind.
105. main()
{
char str[]={"hell"};
int i;
for(i=0;i<5;i++)
printf("%c%c%c%c\n",str[i],i[str],*(str+i),*(i+str));
}
ans: hhhh
eeee
llll
llll
107. main()
{
int i = 10;
int j = i >> 10;
printf("%d",j);
}
ans: 0
date1.yr = 2004;
date1.day = 4;
date1.month = 12;
now how will you initialize date2 (without member by
member assignment)
ans: date2 = date1;
110. main()
{
extern int a;
printf("%d",a);;
}
int a=20;
ans: 20
111. main()
{
int a[5]={2,3};
printf("\n %d %d %d",a[2],a[3],a[4]);
}
ans: -2 3 0 1
113. main()
{
int a,b;
a=sumdig(123);
b=sumdig(123);
printf("%d %d",a,b);
}
sumdig(int n)
{
static int s=0;
int d;
if(n!=0)
{
d=n%10;
n=(n-d)/10;
s=s+d;
sumdig(n);
}
else return(s);
}
ans: 6 12
ans: 27 6
115. main()
{
const int x=get();
printf("%d",x);
}
get()
{
return(20);
}
116. A function has this prototype void f1(int **x), How will you call
this function?
{a) int **a; (b) int a; (c) int *a; (d) int a=5;
f1(a); f1(&a); f1(&a); f1(&&a);
117. main()
{
int l=1;
for(;;)
{
printf("%d",l++);
if(l>10)
break;
}
}
ans: 12345678910
118. main()
{
char str[5]="fast";
static char *ptr_to_array = str;
printf("%s",ptr_to_array);
}
120. main()
{
int i=10;
fn(i);
printf("%d",i);
}
fn(int i)
{
return ++i;
}
ans: 10
121. main()
{
int i,j;
i=10;
j=sizeof(++i);
printf("%d",i);
}
ans: 10
122. main()
{
struct emp
{
char name[20];
int age;
float sal;
};
struct emp e = {"tiger"};
printf("\n %d %f",e.age,e.sal);
}
123. main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
ans: -128
ans: -1 -1
127. main(0
{
char *pDestn,*pSource="I Love You Daddy";
pDestn=(char *)malloc(strlen(pSource));
strcpy(pDestn,pSource);
printf("%s",pDestn);
free(pDestn);
}
128. main()
{
char a[5][5],flag;
a[0][0]='A';
flag=((a==*a)&&(*a==a[0]));
printf("%d\n",flag);
}
ans: 1
129. main()
{
int i=5,j=5,k;
k=++i+++j;
printf("%d",k);
}
130. main()
{
int b=10;
int *p=&b;
*p++;
printf("%d",*p);
}
131. main()
{
int i=0,j=50
while (i<j)
{
if(<some condtn>)
{
<body of the loop>
i++
}
elseif(<some condtn>)
{ <body of the loop>
j--
}
else(<some condtn>)
{<body of the loop>
j--
}
}
How many times the body of the loopis going to be
executed?
Ans: 50 times
132. How can you include a library code written in C++ in a source
code written in C?
(Options are there)
133. main()
{
int a[20],i;
for(i=0;i<20;i++)
{
a[i]=i;
}
for(i=0;i<20;i++)
{
a[i]=a[20-i];
}
for(i=0;i<20;i++)
printf("%d",a[i]);
}
134. main()
{
int a[20],i;
for(i=0;i<20;i++)
{
a[i]=i;
}
for(i=0;i<20;i++)
{
a[i]=a[20-i];
}
for(i=0;i<20;i++)
printf("%d",a[i]);
}
ans: 19 18 17 16 15 14 13 12 11 10 10 11 12
13 14 15 16 17 18 19
Ans: 50 times
136. main()
{
int a[]={5,4,3,2,1};
int x,y;
int *p=&a[2];
*p++;
x=++*p;
y=*(p++);
printf("%d %d",x,y);
}
ans: 3 3
137. int a;
scanf("%f",&a); is there any error or warning ?
138. main()
{int *p,*q;
p=(int *)1000;
q=(int *)2000;
printf("%d",(q-p));
}
ans: 500
139. When a 'C' function call is made, the order in which parameters
passed to the function are pushed into the stack is
140. main()
{
extern int a;
a=10;
printf("%d",a);
}
int a=20;
ans: 10
142. main()
main()
{
int i = 2;
printf("%d %d %d %d ",i, i++,i--,i++);
}
ans: 3 2 3 2
143. main()
{
int i = 2;
printf("%old %old %old %old ",i, i++,i--,i++);
}
ans: File
145. main()
{
printf(" Hello \o is the world ");
}
146. What is
int *p(char (*s)[])
147. How will u print TATA alone from TATA POWER using string copy
and concate commands in C?
148. main()
{
int n = 1;
switch(n)
case 1:printf("CASE !");
case(2):printf("default");
break;
}
ans: i=5
150. ~(~0<<8)?
ans: Last 8 digits are 1's rest are 0's.
151. struct x
{
int I;
char s;
};
union
{
struct x y;
double j;
}z;
main()
{
printf("%d",sizeof (z));
}
ans: 8
152. main()
{
char a[]={'1','2','3',0,'1','2','3'};
printf("%s",a);
}
ans: 123
153. main()
{
int a[]={'1','2','3',0,'1','2','3'};
printf("%s",a);
}
ans: 1
154. main()
{
#define x 10
{
printf("%d",x);
}
}
ans: 10
155. main()
{
#define x 10
{
printf("%d",++x);
}
}
156. main()
{
char a[]="ABCDEFGH";
printf("%d",sizeof(a));
}
ans: 9
157. main()
{
int i=(int*)0x1000;
printf("%d",i);
}
158. main(int I)
{
printf("%d",I);
}
159. main()
{
printf(" %d",printf("helloworld"));
}
ans: helloworld 10
160. main()
{
int a[2][2][6]
{{2,3,4,5,6,7}
{…………….}}
printf(“%u%u%u%u”,a,*a,**a,***a);
161. main()
{
int a[2][2]={{2},{3}};
printf("%d ",a[0][0]);
printf("%d ",a[0][1]);
printf("%d ",a[1][0]);
printf("%d ",a[1][1]);
}
ans: 2 0 3 0
162. char strbuf[]="hello ";
char *strptr="world ";
strbuf="world ";
strptr="hello";
164. main()
{
int i;
char *str4="123four";
i=atoi(str4);
printf("%d",i);
}
ans: 123
165. main()
{
char loop;
for(loop='A';loop<='z';loop++)
printf("%c",loop);
}
166. main()
{
char s[]={'1','2','3',0,'1','2','3'};
printf("%s",s);
}
ans: 123
167. main()
{
char *p=”Caritor”;
*++p;
printf(“%s”,p);
*++p;
printf(“%s”,*p);
}
ans:
171. main()
{
char str1[]="HELLO";
char str2[]="HELLO";
if(str1==str2)
printf("EQUAL");
else
printf("NOT EQUAL");
}
172. main()
{
int s=5;
printf("%d",s,s<<2,s>>2);
}
ans: 5
173. main()
{
int s=5;
printf("%d %d %d",s,s<<2,s>>2);
}
ans: 5 20 1
174. main()
{
int a[2][2]={2,3};
printf("%d %d %d %d",a[0][0],a[0][1],a[1][0],a[1][1]);
}
ans: 2 3 0 0
175. main()
{
int i=-3,j=2,k=0,m;
m= ++j&&++i&&++k;
printf("%d %d %d %d",i,j,k,m);
}
ans: -2 3 1 1
176. main()
{
const int i=7;
printf("%d",++i);
}
177. #define I 6
main()
{
printf("%d",++I);
}
178. main()
{
int a[2][3][4]={{1,2,3,4,5,6,7,8,9,1,1,2},
{2,3,4,7,6,7,8,9,0,0,0,0}};
printf("%d %d %d %d",a,*a,**a,***a);
}
179. main()
{
printf("%c",7["sundaram"]);
}
180. main()
{
printf("%c","sundaram"[7]);
}
182. main()
{
printf("%d",-1>>4);
}
183. struct x
{
int i;
char c;
};
union y{
struct x a;
double d;
};
main()
{
printf("%d",sizeof(union y));
}
184. struct x{
char c1;
char c2;
int i;
short int j;
};
struct y{
short int j;
char c1;
char c2;
int i;
};
main()
{
printf("%d %d",sizeof (struct x),sizeof (struct y));
}
185. main()
{
int k=2,j=3,p=0;
p=(k,j,p);
printf("%d\n",p);
}
187. main()
{
unsigned int i=-1;
printf("%d %u\n",i,i);
printf("%u\n",i*-1);
}
ans: -1 65535
1
188. main()
{
int **i;
int *j=0;
i=&j;
if (NULL != i&& NULL != *i)
{
printf("I am here");
}
}
189. main()
{
int *j=(int *)0x1000;
printf("%p",j);
}
190. main()
{
int *j=0x1000;
printf("%p",j);
}
ans: 0000:1000
191. main()
{
int *j=(int *)0x1000; (or) int *j=0x1000;
printf("%d",j);
}
ans: 4096
192. main(int x)
{
printf("%d",x);
}
ans: 2
193. main()
{
char a[]={'1','2','3',0,'1','2','3'};
printf(a);
}
ans: 123
195. main()
{
int a[]={5,6};
printf("%d",a[1.6]);
}
ans: 6
196. struct x
{
int i=0; /*line A*/
};
main()
{
struct x y; /*line B*/
}
197. struct {
int len;
char *str
}*p;
++p -> len
198. main()
{
char a[]="abcdefghijklmnopqrstuvwxyz";
printf("%d",sizeof(a));
}
199. main()
{
char a[]="abcdefghijklmnopqrstuvwxyz";
char *p=a;
printf("%d ",strlen(p));
p+=10;
printf("%d",strlen(a));
}
ans: 26 26
200. main()
{
printf("%d",printf(" hello world "));
}
201. what is the output of the following code, assuming that the array
begins at location 5364875?
main()
{
int a[2][3][4]={
{2,1,4,3,6,5,8,7,0,9,2,2},
{1,2,3,4,5,6,7,8,9,0,1,2}
};
printf("%u %u %u %u",a,*a,**a,***a);
}
ans: 5364875,5364875,5364875,2
202. main()
{
char a =0xAA ;
int b ;
b = (int) a ;
b = b >> 4 ;
printf("%x",b);
}
ans: fffa
204. main()
{
int a;
printf("%d",scanf("%d",&a));
}
205. main()
{
printf("as");
printf("\bhi");
printf("is\n");
}
206. main()
{
unsigned short a=-1;
unsigned char b=a;
printf("%d %d ",a,b);
}
207. main()
{
unsigned short a=-1;
unsigned char b=a;
printf("%u%d ",a,b);
}
ans: inside
ans: 33
210. main()
{
int *i;
int s=(int *)malloc(10*sizeof(int));
for (i=0;i<10;i++)
{
printf("%d",i*i);
}
}
ans:1076
ans: 120
214. main()
{
int i,j=1;
for(i=0;i<10;i++);
{
j=j+i;
}
printf("%d %d",i,j);
}
ans: 10 11
216. main()
{
int i=0xaa;
char *p;
p=(char *)i;
p=p>>4;
printf("%x",p);
}
217. main()
{
enum{sunday=-1,monday,wednesday};
printf("%d %d",sizeof(wednesday),wednesday);
}
ans: 2 1
218. ->How do you write a program which produces its own source
code as its output?
->How can I find the day of the week given the date?
->Why doesn't C have nested functions?
->What is the most efficient way to count the number of bits
which are set in a value?
->How can I convert integers to binary or hexadecimal?
->How can I call a function, given its name as a string?
->How do I access command-line arguments?
->How can I return multiple values from a function?
->How can I invoke another program from within a C program?
->How can I access memory located at a certain address?
->How can I allocate arrays or structures bigger than 64K?
->How can I find out how much memory is available?
->How can I read a directory in a C program?
->How can I increase the allowable number of simultaneously
open files?
->What's wrong with the call "fopen("c:\newdir\file.dat", "r")"?
ans: undefined
ans: 123
ans: less
224. How do you declare an array of N pointers to functions returning
pointers to functions returning pointers to characters?
ans: 20 20 20
227. main()
{
static i=3;
printf("%d",i--);
return i>0 ? main():0;
}
ans: 321
230. main()
{
static int i = 0;
int z;
if(i++<5)
{
printf("%d ",i);
}
else
exit(0);
z=3;
printf("%d %d ",z,main());
}
ans: 1 2 3 4 5
231. main()
{
static int i = 0;
int z;
if(i++>5)
{
printf("%d ",i);
exit(0);
}
z=3;
printf("%d %d ",z,main());
}
ans: 7
232. main()
{
int z=3;
printf("%d %d ",z,main());
}
233. main()
{
int i=3,j=5;
while (i--,j--)
{
printf("%d %d \n",i,j);
}
}
ans: 2 4
13
02
-1 1
-2 0
5 times loop will be executed
234. main()
{
int i=3,j=5;
if(i--,j--)
printf("%d %d \n",i,j);
}
ans: 2 4
235. main()
{
int i=3;
printf("%d %d %d ",++i,i--,i+=5);
}
ans: 8 8 8
236. main()
{
int times =5;
int i=3;
int j=4;
int k=34;
i=j+k;
while(times --)
{
i=times;
j=times;
k=times;
}
printf("%d %d %d ",i,j,k);
}
ans: 0 0 0
237. main()
{
int num =32765;
while (num++);
printf(“%d “,num);
}
ans: 1
238. main()
{
float k=3.4156;
printf("%f %f ",floor(k),ceil(k));
}
239. main()
{
int number =25;
char name ='A';
printf("The addition of the name and the number is %o
",name+number);
}
240. The following function gives some error. What changes have to
be made
void ( int a,int b)
{
int t; t=a; a=b; b=t;
}
ans: 5 bytes
******242. main()
{
int i;
for(i=0;i<20;i++)
{
switch(i)
{
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default: i+=4;
break;}
printf("%d,",i);
}
}
243. main()
{
char c=-64;
int i=-32;
unsigned int u =-16;
if(c>i)
{
printf("pass1,");
if(c<u)
printf("pass2");
else
printf("Fail2");
}
else
printf("Fail1,");
if(i<u)
printf("pass2");
else
printf("Fail2");
}
******244. main()
{
char c=-64;
int i=-32;
unsigned int u =16;
if(c>i)
{
printf("pass1,");
if(c<u)
printf("pass2");
else
printf("Fail2");
}
else
printf("Fail1,");
if(i<u)
printf("pass2");
else
printf("Fail2");
}
246. main()
{
unsigned int x=-1;
int y;
y = ~0;
if(x == y)
printf("same");
else
printf("not same");
}
ans: same
main()
{
char *g="string";
strcpy(gxxx(),g);
g = gxxx();
strcpy(g,"oldstring");
printf("The string is : %s",gxxx());
}
main()
{
char *g="String";
myalloc(g,20);
strcpy(g,"Oldstring");
printf("The string is %s",g);
}
******249. main()
{
char p[]="String";
int x=0;
if(p=="String")
{printf("Pass 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
else
{
printf("Fail 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
}
***250. main()
{
char *p="String";
int x=0;
if(p=="String")
{printf("Pass 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
else
{
printf("Fail 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
}
251. main()
{
printf("%u",main);
}
ans: 0
252. main()
{
printf("%p",main);
}
253. main()
{
int i=10;
printf("%d %d %d",i,i++,++i);
}
254. main()
{
int *p,*q;
p=(int *)1000;
q=(int *)2000;
printf("%d",(q-p));
}
ans: 500
find(int x,int y)
{ return ((x<y)?0:(x-y));}
ans: 6
257. main()
{
int a;
if (a=7)
printf(" a is 7 ");
else
printf("a is not 7");
}
ans: a is 7
258. main()
{
int a=4,b=3,c=5;
if (a>b)
if(b>c)
printf("inner");
else printf("outer");
}
259. main()
{
int a=2,b=3,c=5;
if (a>b)
if(b>c)
printf("inner");
else printf("outer");
}
260. main()
{
inc(); inc(); inc();
}
inc()
{
static int x;
printf("%d", ++x);
}
ans: 123
261. main()
{
printf("%d", strlen(""));
}
262. main()
{
printf("%d", sizeof(""));
}
263. main()
{
int a=5,b=2;
printf("%d", a+++b);
}
ans: 7
264. main()
{
int v=3, *pv=&v;
printf(" %d %d ", v,*pv);
}
ans: 3 3
265. main()
{
enum cities{bethlehem,jericho,nazareth=1,jerusalem};
printf("%d %d",jericho,nazareth);
}
ans: 1 1
267. main()
{
char line[80];
scanf("%[^\n]",line);
printf("%s",line);
}
268. main()
{
char line[80];
scanf("%[^a]",line);
printf("%s",line);
}
270. main()
{
printf("%f %f",floor(-2.8),ceil(-2.8));
}
272. main ()
{
int i =5;
i= (++i)/(i++);
printf( "%d" , i);
}
ans: 2
273. main()
{
int a,b;
int *p,*q;
a=10;b=19;
p=&(a+b);
q=&max;
}
func()
{
return 0;
}
275. main()
{
printf("%u", sizeof(func()));
}
func()
{
return 0;
}
278. main()
{
int n,i=1;
switch(n)
{
case 1:
printf("1");
case 2:
printf("2");
default:
i=10;
}
printf("i=%d",i);
}
*****280. main()
{
int i;
printf("%d", &i)+1;
scanf("%d", i)-1;
}
********281. main()
{
int i;
float *pf;
pf = (float *)&i;
*pf = 100.00;
printf("%d", i);
}
282. main()
{
int i = 0xff;
printf("%d", i<<2);
}
ans: 1020
ans: 225
284. union u
{
struct st
{
int i : 4;
int j : 4;
int k : 4;
int l;
}st;
int i;
}u;
main()
{
u.i = 100;
printf("%d, %d, %d",u.i, u.st.i, u.st.l);
}
ans: 100 4 0
285. union x
{
union u
{
int i;
int j;
}a[10];
int b[10];
}u;
main()
{
printf("%d ", sizeof(u));
printf("%d ", sizeof(u.a));
printf("%d", sizeof(u.a[0].i));
}
******286. main()
{
int (*functable[2])(char *format, ...) ={printf, scanf};
int i = 100;
(*functable[0])("%d ", i);
(*functable[1])("%d ", i);
(*functable[1])("%d ", i);
(*functable[0])("%d", &i);
}
***287. main()
{
int (*functable[2])(char *format, ...) ={printf, scanf};
int i = 100;
(*functable[0])("%d, ", i);
(*functable[1])("%d", &i);
(*functable[1])("%d", &i);
(*functable[0])(", %d", &i);
}
288. main()
{
int i, j, *p;
i = 25;
j = 100;
p = &i; /* Address of i is assigned to pointer p */
printf("%f", i/(*p)); /* i is divided by pointer p */
}
289. main()
{
char *p = "hello world";
p[0] = 'H';
printf("%s", p);
}
290. main()
{
char * strA;
char * strB = "I am OK";
memcpy( strA, strB, 6);
}
ans: printf(“\%”);
printf(“%%”);
printf(“\%%”);
292. main()
{
printf("\% ");
printf("\\% ");
printf("%% ");
printf("\%%");
}
ans: % \% % %
293. main()
{
printf("\%d ", 100);
printf("\\% ");
printf("%% ");
printf("\%%");
}
ans: 100 \% % %
main()
{
struct Foo *obj = malloc(sizeof(struct Foo));
strcpy(obj->pName,"Your Name");
printf("%s", obj->pName);
}
297. main()
{
char *a = "Hello ";
char *b = "World";
printf("%s", stract(a,b));
}
298. main()
{
char *a = "Hello ";
char *b = "World";
printf("%s", strcat(a,b));
}
ans: HelloWorld
299. main()
{
char *a = "";
char *b = "World";
printf("%s", strcpy(a,b));
}
ans: World
main()
{
int a[10][10];
func1(a);
func2(a);
}
301. main()
{
printf("%d, %d", sizeof('c'), sizeof(100));
}
ans: 2, 2
302. main()
{
int i = 100;
printf("%d", sizeof(sizeof(i)));
}
ans: 2
304. main()
{
char c;
int i = 456;
c = i;
printf("%d", c);
}
ans: -56
305. main ()
{
int x = 10;
printf ("x = %d, y = %d", x,--x++);
}
306. main()
{
int i =10, j = 20;
printf("%d, %d, ", j-- , --i);
printf("%d, %d", j++ , ++i);
}
307. main()
{
int x=5;
for(;x==0;x--)
{
printf("x=%d\n", x--);
}
}
ans: no output
308. main()
{
int x=5;
for(;x!=0;x--)
{
printf("x=%d ", x--);
}
}
309. main()
{
int x=4;
for(;x==0;x--)
{
printf("x=%d ", x--);
}
}
310. main()
{
int x=5;
{
printf("x=%d", x--);
}
}
ans: x=5
311. main()
{
unsigned int bit=256;
printf("%d ", bit);
{
unsigned int bit=512;
printf("%d", bit);
}
}
ans: 256 512
312. main()
{
int i;
for(i=0;i<5;i++)
{
printf("%d ", 1L << i);
}
}
ans: 1 2 4 8 16
313. main()
{
signed int bit=512, i=5;
for(;i;i--)
{
printf("%d ", bit = (bit >> (i - (i -1))));
}
}
314. main()
{
signed int bit=512, i=5;
for(;i;i--)
{
printf("%d ", bit >> (i - (i -1)));
}
}
315. main()
{
if (!(1&&0))
{
printf("OK I am done.");
}
else
{
printf("OK I am gone.");
}
}
ans: OK I am done
316. main()
{
if ((1||0) && (0||1))
{
printf("OK I am done.");
}
else
{
printf("OK I am gone."); }
}
ans: OK I am done
317. main()
{
signed int bit=512, mBit;
{
mBit = ~bit;
bit = bit & ~bit ;
printf("%d %d", bit, mBit);
}
}
ans: 0 -513
321. main()
{
int d,a=5,b=3,c=(a,b);
d=(a,b);
printf("%d %d",c,d);
}
322. main()
{
int a=5,b=3,c=a,d;
d=(a,b);
printf("%d %d",c,d);
}
ans: 5 3
323. main()
{
int a=5,b=3,c=(a,b),d;
d=(a,b);
printf("%d %d",c,d);
}
ans: 3 3
324. main()
{
int a=5,b=3,c=(a,b),d;
d=a,b;
printf("%d %d",c,d);
}
int *f2()
{
int *p;
*p=3;
return p;
}
int *f3()
{
int *p;
p=malloc();
return p;
}
int *f4()
{
int n;
return (&n)
}
326. *p+=1
*p++
are these two same?
328. main()
{
int j=4;
for(int i=0;i<5;i++)
{
j++;
++j;
}
printf("%d",j);
}
329. main()
{
int j=4;
for(int i=0;i<5;i++)
{
j++;
++j;
}
printf("%d",j);
}
ans: 14
330. main()
{
char s1[20]="hello world";
s1[5]=”\0”;
printf("%d",strlen(s1));
}
331. main()
{
char s1[20]="hello world";
s1[5]=’\0’;
printf("%d",strlen(s1));
}
ans: 5
333. #define m 10
f();
main()
{
f(m);
}
f(int j) or f(j)
{
printf("%d",j);
}
ans: 10
335. f();
main()
{
int x=1,y=2,z=3;
f(x,y,z);
}
f(int p,int q,int r)
{
printf("%d %d %d",p,q,r);
}
336. f();
main()
{
float x=1.0,y=2.0,z=3.0;
f(x,y,z);
}
f(float p,float q,float r)
{
printf("%f %f %f",p,q,r);
}
338. main()
{
int x=0;
for(;;x++){
if(x==4) break;
continue;
}
printf("%d\n",x);
}
ans: 4
339. main()
{
int i=100;
do
{--i;}while(i>50);
printf("%d\n",i);
}
ans: 50
340. main()
{
int o;
int m=-14;
int n=6;
o=m%++n;
n+=m++%o;
printf("%d%d%d",m,n,o);
}
341. main()
{
int a=1000,b=1000,c;
(long)c=(long)a*b;
printf("%d",c);
}
344. main()
{
int a, *b = &a, **c =&b;
a=4;
** c= 5;
printf("%d",a);
}
ans: 5
345. main( )
{
int i = 1;
if(!i)
printf("Recursive calls are real pain!");
else
{
i = 0;
printf("Recursive calls are challenging\n");
main();
}
}
346. main()
{
struct emp{
char n[20];
int age;};
struct emp e1={"david",23};
struct emp e2=e1;
if(e1==e2)
printf("structures are equal");
}
347. main( )
{
char a[];
a[0] = 'A';
printf("%c", a[0]);
}
348. main()
{
printf("%d %d%d",sizeof('3'),sizeof("3"),sizeof(3));
}
ans: 2 2 2
349. main()
{
printf("%c","abcdefgh"[4]);
}
ans: e
350. main()
{
int a[ ]={10,20,30,40,50};
char *p;
p=(char *)a;
printf("%d",*((int *)p+4));
}
ans: 50
351. main()
{
int a[]={10,20,30,40,50};
char *p;
p=(char *)a;
printf("%d %d %d %d",*p,*(p+1),*(p+2),*(p+3));
}
ans: 10 0 20 0
352. main()
{
printf("%c",7["sundaram"]);
}
ans: m
ans: 11
355. main()
{
int b;
b=f(20);
printf("%d",b);
}
f(int a)
{
a>20 ? return (10): return (20);
}
356. main()
{
int b;
b=f(20);
printf("%d",b);
}
f(int a)
{
return a>20 ? (10): (20);
}
ans: 20
358. main()
{
int i=3;
i=i++;
printf("%d",i);
}
ans: 4
359. main()
{
static char a[]="Bombay";
char *b="Bombay";
printf("%d %d",sizeof(a),sizeof(b));
}
360.
main()
{
int x = 5;
printf("%d %d", x++, ++x);
return 0;
}
ans: 6 6
361. main()
{
int z = 4;
printf("%d", printf(" %d %d ", z, z));
}
362. main()
{
int z = 45;
printf("%d", printf(" %d %d ", z, z));
}
ans: 45 45 7
363. main( )
{
int a[ ] = { 10, 20, 30, 40, 50};
int j;
for (j = 0; j < 5; j++)
{
printf("%d", * a);
a++;
}
}
364. main()
{
int n=20, i = 0;
while(n-->0);
i = i+n;
printf("%d",i);
}
ans: -1
365. main()
{
int i = 0; char ch = ‘A’
do {
printf(“%c”, ch);
} while (i++ <5| | ++ch < =’F’);
}
ans: AAAAAABCDEF
ans: 0
367. main( )
{
static float a[ ] = { 13.24, 1.5}
float *j, *k;
j = a;
k = a + 2;
j = j * 2;
k = k/2;
printf(“%f%f ”, *j, *k);
}
368. main( )
{
static char s[ ] = “Rendezvous”;
printf(“%d”, *(s+ strlen(s)));
}
ans: 0
369. main()
{
char **p="Hello";
printf("%c",*p);
}
ans: H
370. main()
{
char **p="Hello";
printf("%s",p);
}
ans: Hello
371. main()
{
char **p="Hello";
printf("%s",*p); /* (or) printf(“%s”,**p); */
}
ans: error
372. main()
{
char **p="Hello";
printf("%c",**p);
}
ans: error
373. main()
{
char a[]="Hello";
printf("%c\n",*a++);
}
374. main()
{
int a=3,b=2,c=1;
static int k= a<b<c-1;
printf("%d",k);
}
375. main()
{
int a=3,b=2,c=1;
int k= a<b<c-1;
printf("%d",k);
}
ans: 0
376. main()
{
char c=-32;
int i=-64;
unsigned u=-26;
if(c>i)
printf("PASS1 ");
if( i < c)
printf("PASS2 ");
else
printf("FAIL1 ");
if(i<u)
printf("PASS2 ");
else
printf("FAIL2 ");
}
377. main()
{
int i=4;
switch(i)
{
case 1:
printf("HEllo");
case default: // "case" should not come with "default"
printf("****");
}
}
378. main()
{
static int i=5;
printf("%d ",i--);
if(i)
main();
}
ans: 5 4 3 2 1
379. main()
{
int a=5,c;
int ptr;
ptr=&a;
c=*ptr * a;
printf("%d,%d",c,a);
}
380. main()
{
int x=10,y=5,p,q;
p=x>9;
q=x>3&&y!=3;
printf("p=%d q=%d",p,q);
}
381. main()
{
int x=11,y=6,z;
z=x==5||y!=4;
printf("z=%d",z);
}
ans: z=1
382. main()
{
int c=0,d=5,e=10,a;
a=c>1?d>1||e>1?100:200:300;
printf("a=%d",a);
}
ans: a=300
383. main()
{
int i=-5,j=-2;
junk(i,&j);
printf("i=%d,j=%d",i,j);
}
junk(i,j)
int i,*j;
{
i=i*i;
*j=*j**j;
}
ans: i=-5,j=4
384. #define NO
#define YES
main()
{
int i=5,j;
if(i>5)
j=YES;
else
j=NO;
printf("%d",j);
}
385. #define NO 0
#define YES 1
main()
{
int i=5,j;
if(i>5)
j=YES;
else
j=NO;
printf("%d",j);
}
ans: 0
386. main()
{
int a=0xff;
if(a<<4>>12)
printf("leftist");
else
printf("rightist");
}
ans: rightist
387. main()
{
int i=+1;
while(~i)
printf("vicious circles");
}
389. main()
{
int p = -200;
char c;
c = p;
printf("%d %d", c++, ++c);
}
ans: 57 57
ans: 2*/3*/%*/i
ans: 0 12
393. main()
{
int j;
for(j=0;j<3;j++)
foo();
}
foo() {
static int i = 10;
i+=10;
printf("%d ",i);
}
ans: 20 30 40
395. main()
{
union {
int a;
int b;
int c;
} u,v;
u.a = 10;
u.b = 20;
printf("%d %d \n",u.a,u.b);
}
ans: 20 20
396. main()
{
char *str = "12345";
printf("%c %c %c\n", *str, *(str++), *(str++));
}
ans: 3 2 1
398. main()
{
int len=4;
char *st="12345678";
st = st -len;
printf("%c\n",*st);
}
399. func();
main()
{
func(1);
}
func(int i)
{
static char *str ={ "One","Two","Three","Four"};
printf("%s\n",str[i++]);
return;
}
400. main()
{
int i;
for (i=1;i<100; i++)
printf("%d %0x\n",i,i);
}
401. struct {
int x;
int y;
union {
int id_no;
char *name;
}b;
}s,*st;
main()
{
st = &s;
st-x=10;
st-b.id_no = 101;
printf("%d %d\n",s.x,s.b.id_no);
}
402. main()
{
int j,ans;
j = 4;
ans = count(4);
printf("%d\n",ans);
}
int count(int i)
{
if ( i < 0) return(i);
else
return( count(i-2) + count(i-1));
}
ans: -18
403. main()
{
int i=4;
if(i=0)
printf("statement 1");
else
printf("statement 2");
}
ans: statement 2
404. main()
{
char a[2];
*a[0]=7;
*a[1]=5;
printf("%d",&a[1]-a);
}
405. main()
{
char a[]="hellow";
char *b="hellow";
char c[5]="hellow";
printf("%s %s %s ",a,b,c);
printf("%d %d %d",sizeof(a),sizeof(b),sizeof(c));
}
406. main()
{
char a[]="hellow";
char *b="hellow";
char c[7]="hellow";
printf("%s %s %s ",a,b,c);
printf("%d %d %d",sizeof(a),sizeof(b),sizeof(c));
}
ans: 10 -1
409. main()
{
char *a[4]={"jaya","mahe","chandra","buchi"};
printf("%d %d %d",sizeof(a),sizeof(char
*),sizeof(a)/sizeof(char *));
}
414. main()
{
int *p,*q,r;
int values[30];
p=&values[0];
q=values+29;
r=++q-p;
printf("%d",r);
}
ans: 30
419. struct x
{
int j;
char k[100];
unsigned i;
};
int *ptr1;
struct X *ptr2;
main()
{
printf("%d %d",sizeof(ptr1),sizeof(ptr2));
}
ans: 4 4
420. main()
{
int i=5;
printf( " %d %d %d", ++i,i,i++);
}
ans: 7 6 5
421. main()
{
int i,j ;
for(i=0;i<=10;i++);
for(j=0;j<=10;j++);
printf("i=%d,j=%d\n",i,j);
}
ans: i=11,j=11
ans: 29
423. main()
{
int p = 0, q =1;
p = q++;
p = ++q;
p = q--;
p = --q;
printf("%d %d",p,q);
}
ans: 1 1
424. main()
{
int a , count;
int func(int);
for (count = 1 ;count <=5;++count)
{
a = func(count);
printf("%d", a);
}
}
int func(int x)
{
int y;
y=x*x;
return(y);
}
ans: 1491625
main()
{
int a[] ={ 1,2,3,4,5,6,7};
char c[] = {'a','x','h','o','k'};
printf("%d %d", (&a[3]-&a[0]),(&c[3]- &c[0]));
}
ans: 3 3
426. main()
{
struct s1 {int i; };
struct s2 {int i; };
struct s1 st1;
struct s2 st2;
st1.i =5;
st2 = st1;
printf(" %d " , st2.i);
}
ans: error (different struct variables should not
assigned using "=" operator.)
427. main()
{
int i,j;
int mat[3][3] ={1,2,3,4,5,6,7,8,9};
for (i=2;i>=0;i--)
for (j=2;j>=0;j--)
printf("%d" , *(*(mat+j)+i));
}
ans: 963852741
428. main()
{
int n=10;
fun(n);
}
int fun( int n)
{
int i;
for(i=0;i<=n;i++)
fun(n-i);
printf(" well done");
}
howmany times is the printf statement executed for n=10?
429. main()
{
struct emp{
char emp[];
int empno;
float sal;
};
struct emp member = { "TIGER"};
printf(" %d %f", member.empno,member.sal);
431. main()
{
int a=2, b=3;
printf(" %d ", a+++b);
}
ans: 5
main()
{
int x=1, y=2;
print(max(x++,y),x,y);
print(max(x++,y),x,y);
}
ans: 2 2 2 3 4 2
ans: 4
435. main()
{
char ch='A';
while(ch<='F')
{
switch(ch)
{
case'A':case'B':case'C':case'D':ch++;continue;
case'E':case'F':ch++;
}
putchar(ch);
}
}
ans: FG
436. main()
{
int a=1, b=2, c=3, *pointer;
pointer=&c;
a=c/*pointer;
b=c;
printf ("a=%d b=%d",a,b);
}
438. main()
{
int a=10,b=5, c=3,d=3;
if(a<b)&&(c=d++)
printf("%d %d %d %d" ,a,b,c,d);
else printf("%d %d %d %d", a,b,c,d);
}
ans: f:\progr.exe
441. main()
{
int i=3;
while(i--)
{
int i=100;
i--;
printf("%d..",i);
}
}
ans: 99..99..99..
442. main()
{
int rows=3,colums=4;
int a[rows][colums]={1,2,3,4,5,6,7,8,9,10,11,12};
int i, j,k; i=j=k=99;
for(i=0;i<rows;i++)
for(j=0;j<colums;j++)
if(a[k][j]<k) k=a[i][j];
printf("%d\n",k);
}
443. main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
ans: 11 16
444. main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
ans: 57 94
445. main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
ans: 5 20 1
ans: 10 5
10 5 (swap2 won’t swap x and y)
448. main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
449. main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
450. main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy("Ramco",p1);
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}
ans: RamcoSystems
451. main()
{
char a[2];
*a[0]=7;
*a[1]=5;
printf("%d",&a[1]-a);
}
452. main()
{
char a[]="hellow";
char *b="hellow";
char c[5]="hellow";
printf("%s %s %s ",a,b,c);
printf(" ",sizeof(a),sizeof(b),sizeof(c));
}
main()
{
int varx,vary,i;
for (i=0;i<10;i++)
{
if(varx<a[i])
{
vary=varx;
varx=a[1];
}
else if (vary<a[i])
{
varx=vary;
vary=a[i];
}
printf("%d %d \n",varx,vary);
}
}
456. main()
{
int i=6;
int j;
j=sum(i);
printf("%d",j);
}
sum(int x)
{
int t;
if(x<=1) return (1);
t=sum(x-3)+sum(x-1);
return (t);
}
ans: 9
457. main()
{
int a[]={0,2,4,6,8};
int *ptr;
ptr=a;
printf("%d", *((char *) ptr+4));
}
ans: 4
458. main()
{
int I=3;
while(I--)
{int I=100;
I--;
printf("%d", I);
}
}
ans: 999999
459. main()
{
char ch;
for(ch='0';ch<=255;ch++)
printf("%c", ch);
}
460. x=3
function(++x)...value 4 is passed to the function
x=3
function(x++)...value 3 is passed to the function
463.
#define putchar(c) printf("%c",c)
main()
{
int c='d';
putchar(c);
}
ans: d
ans: 12
467. main()
{
int a[10]={1,2,3,4,5,6,7,8,9,10};
int *p=a;
int *q=&a[9];
printf("%d",q-p+1);
}
ans: 10
468. main()
{
int i=6;
int *p=&i;
free(p);
printf("%d",i);
}
ans: 6
469. main()
{
int i=5;
i=!i>3;
printf("%d",i);
}
ans: 0
470. main()
{
int a[10];
3[a]=10;
printf("%d",*(a+3));
}
ans: 10
ans: 5
475. main()
{
struct t
{
int i;
} a,*p=&a;
p->i=10;
printf("%d",(*p).i);
}
ans: 10
477. i) (*ptr)++;
ii) *ptr+=1;
iii) *ptr++;
ans: susan
default :
ctr++;
};
printf("%d",ctr);
getch();
}
ans: 3
ans: E
483. main()
{
printf("%d",printf("ABC//"));
}
ans: ABC//5
484. main()
{
int i=6;
printf("%d",func(i));
}
int func(int r)
{
int static result;
if(r<=0) result=1;
else
result=func(r-3)+func(r-1);
return result;
}
ans: 13
485. main()
{
int i=3;
while(i--)
{
int i=100;
i--;
printf("%d..",i);
}
}
ans: 99..99..99..
ans: c
ans: 1
ans: 20
for(i=0;i<100;i++)
for(j=0;j<10;j++)
a[i][j]=0;
OR
for(j=0;j<10;j++)
for(i=0;i<100;i++)
a[i][j]=0;
500. main()
{
void print(int);
int i=5;
print(i);
}
void print(int n)
{
if(n>0)
{
print(n-1);
printf("%d",n);
print(n-1);
}
}
ans: 1213121412131215121312141213121
505. main ()
{
int a[10]={10,9,8,7,6,5,4,3,2,1};
clrscr();
int *p=a;
int *q=&a[7];
printf("%d %d ",q,p);
}
506. main()
{
printf("%d",printf("HelloSoft"));
}
ans: HelloSoft9
507. main()
{
int i=3;
printf("%d %d %d",i++,i,++i);
}
ans: 4 4 4
508. main()
{
int i=10;
int j,k=5;
int a[10];
for(j=0;j<10;j++)
a[j]=(i+k)+(i*k);
}
Optimize the above code.
ans: main()
{
int i=10,k=5,j,a[10];
for(j=0;j<10;j++)
a[j]=65;
}
509. main()
{
int *p=0x100;
int *q=0x100;
int k=p*q;
printf("%x\n",k);
}
ans: no output
a) for(i=0;i<1000;i++)
for(j=0;j<1000;j++)
temp=temp+a[i][j];
b) for(j=0;j<1000;j++)
for(i=0;i<1000;i++)
temp=temp+a[i][j]
ans: 0
ans: H
517. fp,fs;
fp=fopen("tc.dat","w");
fs=fopen("tc.dat","w");
putch('A',fp);
putch('B',fs); What will happen?
ans: A is overwritten by B
522. main()
{
int a[5]={1,2,3,4,5};
int *p=a+1;
int *q=a+5;
int dif=q-p;
printf("%d", dif);
}
ans: 4
523. switch(NULL)
ans: case 0: will be executed.
524. #define exp 5
main()
{
printf("%d",exp++);
}
525. strcat(str,str);
ans: compilation error (destination string length
should accommodate both the strings)
526. int(*ptr)[10]
ans: C is exciting!
ans: C is exciting!
ans: 6
537. main()
{
int x;
printf("\n%d",x=0,x=20,x=40);
}
ans: 0
538. main()
{
int a[]={1,2,5,6,9,10};
int *b=&a[4];
printf("\n%d",b[-3]);
}
ans: 2
539. main()
{
int x=0,y=1;
if(x=y)
y= 7;
else
y=2;
printf("%d", y);
}
ans: 7
540. main()
{
int i=39,count=0;
while( i & 1) //some condition like this
{
count++;
i=i>>1;
}
printf("%d",count);
}
ans: 3
541. main()
{
int i=39,count=0;
while( i & 1) //some condition like this
{
count++;
i>>1;
}
printf("%d",count);
}
542. main()
{
int x=128;
printf("\n%d",1+x++);
}
ans: 129
543. main()
{
FILE *f1;
FILE *f2;
f1=fopen("myfile","w");
f2=fopen("myfile","w");
fputc('A',f1);
fputc('B',f2);
fclose(f1);
fclose(f2);
}
what does f1 n f2 conatins?
ans: B
ans:may be f
546. main()
{
int a[]={1,2,9,8,6,3,5,7,8,9};
int *p=a+1;
int *q=a+6;
printf("\n%d",q-p);
}
ans: 5
547. main()
{
int i=3;
while(i--){
int i=100;
i--;
printf("%d ",i);
}
}
ans: 99 99 99
549. Open a file "input" and print the odd number of lines first on the
screen and then
even number of lines..something like that.....
550. main()
{
int x=5, y;
y= x*x++ * ++x ;
printf("%d %d",x,y);
}
ans: 7 216
551. main()
{
int a=10,b=5;
while(--b>=0 && ++a)
{
--b;
++a;
}
printf("%d %d",a,b);
}
ans: 16 -2
552. main()
{
char i;
for (i=0; i<=255; i++)
{
printf("%c", i);
}
}
553. main()
{
int i=0;
switch(i)
{
case 1: printf("hi");
case 0: printf("zero");
case 2: printf("world");
}
}
ans: zeroworld
ans: 2
556. struct XXX
{
int a:6;
/*char s;*/
}structure;
main()
{
printf("%d",sizeof(structure));
}
ans: 1
ans: 3
558. main()
{
char *s;
s="hot java";
strcpy(s,"solaris java");
printf("%s",s);
}
559. main()
{
char *p='a';
int *i=100/ *p;
printf("%d",i);
}
560. main()
{
int n=5;
printf("\nn=%*d",n,n);
}
562. main()
{
const int x=5;
int *ptrx;
ptrx=&x;
*ptrx=10;
/*x=10;*/
printf("%d",x);
}
563. main()
{
const int x=5;
int *ptrx;
ptrx=&x;
*ptrx=10;
x=15;
printf("%d",x);
}
564. main()
{
const char *fun();
*fun()="A";
}
const char *fun()
{
return "Hello";
}
ans: printf("%d",*((int*)p+4)); or
printf("%d",*(p+8));
568. Point out the error in the following program
main()
{
int a=10;
void f();
a=f();
printf("\n%d",a);
}
void f()
{
printf("\nHi");
}
569. If the following program (myprog) is run from the command line
as myprog friday tuesday sunday, What would be the output?
main(int argc, char *argv[])
{
while(sizeof(argv))
printf("%s",argv[--sizeof(argv)]);
}
ans:
570. If the following program (myprog) is run from the command line
as myprog friday tuesday sunday, What would be the output?
main(int argc, char *argv[])
{
printf("%c",*++argv[1]);
}
571. If the following program (myprog) is run from the command line
as myprog friday tuesday sunday, What would be the output?
main(int argc, char*argv[])
{
printf("%c",**++argv);
}
ans: f (check it out)
572. main()
{
char near * near *ptr1;
char near * far *ptr2;
char near * huge *ptr3;
printf("%d %d %d",sizeof(ptr1),sizeof(ptr2),sizeof(ptr3));
}
ans: 2 4 4
ans. No difference
ans. No difference
575. main()
{
int y=128;
const int x; x=y;
printf("%d",x);
}
576. main()
{
int y=128;
const int x=y;
printf("%d",x);
}
577. main()
{
const int x;
x=128;
printf("%d",x);
}
579. If the following program (myprog) is run from the command line
as myprog monday tuesday wednesday thursday, What
would be the output?
main(int argc, char *argv[])
{
while(--argc >0)
printf("%s",*++argv);
}
580. If the following program (myprog) is run from the command line
as myprog 1 2 3, What would be the output?
main(int argc, char *argv[])
{
int i,j=0;
for(i=0;i<argc;i++)
j=j+ atoi(argv[i]);
printf("%d",j);
}
ans: C:\MYPROG.EXE 1 2 3
582. main()
{
FILE *fp;
fp= fopen("trial","r");
}
fp points to:
ans: float
ans: 11
587. main()
{
int i=4;
switch(i)
{
default:
printf("\n A mouse is an elephant built by the Japanese");
case 1:
printf(" Breeding rabbits is a hair raising experience");
break;
case 2:
printf("\n Friction is a drag");
break;
case 3:
printf("\n If practice make perfect, then nobody's
perfect");
}
}
589. f3()
{
printf("three ");
return 1;
}
f1(int x, int y)
{
printf("one ");
return(x+y);
}
f2(int x)
{
printf("two ");
return x;
}
main()
{
int a;
a= f1(23,14)*f2(12/4)+f3();
printf("%d",a);
}
590. main()
{
int a=10,b;
a<= 5 ? b=100 : b=200;
printf("\n%d",b);
}
591. main()
{
int a=10,b;
a<= 5 ? b=100 : (b=200);
printf("\n%d",b);
}
ans: 200
592. main()
{
int a=10,b;
a>= 5 ? b=100 : (b=200);
printf("\n%d",b);
}
ans: 100
593. main()
{
int i=1;
switch(i)
{
case 1:
printf("\nRadioactive cats have 18 half-lives");
break;
case 1*2+4:
printf("\nBottle for rent -inquire within");
break;
}
}
594. main()
{
int i=2;
printf("I=%d i=%d",++i,++i);
}
595. main()
{
unsigned char i=0x80;
printf("i=%d",i<<1);
}
ans: i=256
596. main()
{
unsigned char i=0x80;
i=i<<1;
printf("i=%d",i);
}
ans: i=0
597. main()
{
int B=0xFFFF;
~B ; /* note: not assigned to B */
printf("%d",B);
}
ans: -1
598. main()
{
unsigned int B=0xFFFF;
~B ;
printf("%d",B);
}
ans: -1
599. main()
{
unsigned int B=0xFFFF;
~B ;
printf("%u",B);
}
ans: 65535
601. string is given myprog one two three Where myprog is an exe
file. What will the output of the following program ?
ans: 11
604. main()
{
char c='a';
printf("%d %d", sizeof(c),sizeof('a'));
}
ans: 1 2
605. main()
{
char c='a';
Printf("%d %d", sizeof(c),sizeof('a'));
}
606. main()
{
Char c='a';
printf("%d %d", sizeof(c),sizeof('a'));
}
void main(void)
{
int i=20;
print(i,fn);
}
int fn(void)
{
return(i-=5);
}
ans: 5
ans: Four is Z
ans: Sum= 39
ans: 100 99
void main(void)
{
NewType *c;
c=(NewType *)malloc(sizeof(NewType));
c->i=100;
c->c='C';
(*c).x=100L;
printf("(%d,%c,%4Ld)",c->i,c->c,c->x);
}
ans: (100,C, 100)
618. main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
619. main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
ans: 57 94
620. main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
ans: 5 20 1
ans: 10 5
10 5
ans: 10 5
10 5
624. main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
625. main()
{
char s1[]="Ramco";
char s2[]="Systems";
s1=s2;
printf("%s",s1);
}
626. main()
{
char *p1;
char *p2;
p1=(char *) malloc(25);
p2=(char *) malloc(25);
strcpy(p1,"Ramco");
strcpy(p2,"Systems");
strcat(p1,p2);
printf("%s",p1);
}
ans: RamcoSystems
627. main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
ans: 11 16
628. main()
{
int a=0;
if(a=0) printf("Ramco Systems\n");
printf("Ramco Systems\n");
}
629. main()
{
int a=0;
if(a==0) printf("Ramco Systems\n");
printf("Ramco Systems\n");
}
ans: 45
ans: ave=43.33
ans: 5 5 5 5 5
ans: 99
638. main()
{
printf("Hello %d",printf("QUARK test? "));
}
639. main()
{
int i,j,A;
for (A = -1;A<=1; A++)
printf("%d ",!!A);
}
ans: 1 0 1
640. main()
{
int i=255;
printf("%d\t",++(i++));
}
641. main()
{
char i = 'a';
printf("%c %c",i,(++i));
}
ans: b b
642. main()
{
int i,j;
printf("QUARK %s\n",main());
}
ans: 12
644. main()
{
void fun1(void *);
char a[] = "quark";
void *temp;
temp = a;
fun1(temp);}
void fun1(void *temp1 )
{
int t1 = 0;
while(*((char*)temp1+ t1++ )!='\0') {
printf("%c",*((char*)temp1 + t1));
}
}
ans: uark
ans: 1 24
ans. static
ans: 1 3
ans: A is true
650. void main()
{
int x= -1;
int y =0;
if(y<=x) printf("A is true\n");
if (y ==(x = -10)) printf("B is true\n");
if ((int) x>=y) printf("C is true\n");
}
ans: no output
653. In the following code what is the correct way to increment the
variable ptr to
point to the next member of the array
union intfloat
{
int intArray[ 5];
float floatArray[ 5];
};
union intfloat arr[20];
void *ptr =arr;
x || ++y ||++z;
PRINTXYZ(x,y,z);
ans:
x=0 z=2
x=1 z=2
x=2 z=3
655. main()
{
printf("%d %d", sizeof(NULL), sizeof(""));
}
659. main()
{
char str1[]="Hello";
char str2[]="Hello";
if(str1==str2 && (*(str1+6)== *(str2+6)) )
printf("\n Equal");
else
printf("\n unequal");
}
ans: unequal
660. main()
{
int a, b=255,c=127;
a=~b;
c=c^(~a & b|0);
c=c^(~(~b));
printf("%d\n",c);
}
ans: 127
ans: 34
662. main()
{
int i,j=9999;
char buff[5];
i=sprintf(buff,"%d",j);
printf("%d %s",i,buff);
}
ans: 4 9999
663. main()
{
int i,j=99999;
char buff[5];
i=sprintf(buff,"%d",j);
printf("%d %s",i,buff);
}
ans: 6 -31073
664. main()
{
int I=2;
int j=3;
int k=4;
printf("%d",(I<j<k));
}
ans: 1
int main()
{
printf("%d",func(1));
}
ans: 1
667. main()
{
char *str="quark" "media";
printf("%s",str);
}
ans: quarkmedia
668. main()
{
char *str;
str="hello" "india";
printf("%s",str);
}
ans: helloindia
669. main()
{
int i=0,z;
z=sizeof(++i + i++);
printf("%d %d",z,i);
}
670. main()
{
int y=10;
for (int x=0;x<=10;x++);
y+=x;
printf("%d",y);
}
671. main()
{
int y=10,x;
for (x=0;x<=10;x++);
y+=x;
printf("%d",y);
}
ans: 21
672. fun(int a)
{
static int b;
}
what is the storage allocation for both a and b?
676. main()
{
int a=2;
printf("%d %d %d",++a,a++);
}
ans: 1 2 3 4 5
682. void main()
{
int a[5] ={1,2,3,4,5},i,j=2;
for (i =0;i<5;i++ )
func(j,a[i]);
for (i =0;i<5;i++ )
printf("%d ",a[i]);
}
func(int j,int *a)
{
j=j+1;
a=a+j;
}
ans: 1 2 3 4 5
683. main()
{
for (a=1;a<=100;a++)
for(b=a;b<=100;b++)
foo();
}
foo()
{}
how many times foo will be called?
ans: 5050
684. int i;
main()
{
int a,b;
for (a=1;a<=100;a++)
for(b=a;b<=100;b++)
foo();
printf("%d",i);
}
foo()
{
i++;
}
ans: 5050
685. One palindrome programme was given in recursion
ans : pal(f++,t--)
686. main()
{
int i=foo(2);
printf("%d",i);
}
foo(int s)
{
if(!s)
return s;
else
{
int i=5;
return i;
}
}
ans: 5
687. main()
{
int k=0,i=0,j=1;
if(!0&&(k=2)) printf("%d ",k);
if(!0||(k=0))
printf("%d",k);
}
ans: 2 2
688. main()
{
int k=0,i=0,j=1;
if(!0&&k=2) printf("%d ",k);
if(!0||k=0)
printf("%d",k);
}
689. main()
{
int i;
for(i=0;i<3;i++)
switch(i)
{
case 1: printf("%d",i);
case 2 : printf("%d",i);
default: printf("%d",i);
}
}
ans: 011122
ans: 10 1
693. main()
{
char *a[4]={"jaya","mahe","chandra","buchi"};
printf("%d %d %d",sizeof(a),sizeof(char
*),sizeof(a)/sizeof(char *));
}
ans: 16 4 4
main()
{int a=2;
int b=3;
fn(&a,&b);
printf("%d,%d", a,b);
}
ans: 2,3
696. main()
{
char *p="abc";
char *q="abc123";
while(*p=*q)
printf("%c%c",*p,*q);
}
697. main()
{
printf("%u",-1);
}
ans: 65535
700. main()
{
int x=2;
x<<2;
printf("%d ",x);
}
ans: 2
701. main()
{
int x=2;
x=x<<2;
printf("%d ",x);
}
ans: 8
702. main()
{
int a[]={0,0X4,4,9};
int i=2;
printf("%d %d",a[i],i[a]);
}
ans: 4 4
703. main()
{
int i=2+3,4>3,2;
printf("%d",i);
}
ans: error
704. main()
{
int i=(2+3,4>3,2);
printf("%d",i);
}
ans: 2
705. main()
{
int a=0,b=0;
if(!a)
{
b=!a;
if(b)
a=!b;
}
printf("%d %d",a,b);
}
ans: 0 1
706. main()
{
int I=10;
I=I++ + ++I;
printf("%d",I);
}
ans: 23
main()
{
int x=2,y=3;
swap(x,y);
printf(“%d %d”,x,y);
}
main()
{
int x=2,y=3;
swap(x,y);
printf(“%d %d”,x,y);
}
ans: 2 3
709. struct
{
int x;
int y;
}abc;
1)abc-->x;
2)abc[0]-->x;
3)abc.x;
4)(abc)-->x;
ans: 1 2 &4
a) Stored in swap
b) Stored in stack and poped out after fn. returns
c) Stored in data area
d) Stored in disk
ans: b
711. main()
{
int x=2,y=6,z=6;
x=y==z;
printf("%d",x);
}
ans: 1
ans: x/y=2
714. main()
{
int i;
char *p;
i=0X89;
p=(char *)i;
p++;
printf("%x %x\n",i,p);
}
ans: 89 8a
715. main()
{
int i;
char *p;
i=0X89;
p=(char *)i;
p++;
printf("%x %x\n",p,i);
}
ans: 8a 0
ans: d)float
717. main()
{
int X,b;
b=7;
X = b>8 ? b <<3 : b>4 ? b>>1:b;
printf("%d",X);
}
ans: 3
718. main()
{
int n=2;
printf("%d %d\n", ++n, n*n);
}
ans: 3 4
ans: unknown
720. main()
{
int a=10;
int b=6;
if(a=3)
b++;
printf("%d %d\n",a,b++);
}
ans: 3 7
721. main()
{
enum Months {JAN =1,FEB,MAR,APR};
Months X = JAN;
if(X==1)
{
printf("Jan is the first month");
}
}
ans: error
722. main()
{
enum Months {JAN =1,FEB,MAR,APR};
enum Months X = JAN;
if(X==1)
{
printf("Jan is the first month");
}
}
723. main()
{
int l=6;
switch(l)
{
default : l+=2;
case 4: l=4;
case 5: l++;
break;
}
printf("%d",l);
}
ans: 5
724. main()
{
int x=20;
int y=10;
swap(x,y);
printf("%d %d",y,x+2);
}
swap(int x,int y)
{
int temp;
temp =x;
x=y;
y=temp;
}
ans: 10 22
726. main()
{
char s[]="Hello, world";
printf("%15.10s",s);
}
727. main()
{
printf("%d\n",f(7));
}
f(x)
{
if(x<=4)
return x;
return f(--x);
}
ans: 4
728. main()
{
int x=0 ,*p=0;
x++;p++;
printf("%d and %d\n",p);
}
ans: 2 and 0
729. main()
{
int i=20,*j=&i;
f1(j);
*j+=10;
f2(j);
printf("%d and %d",i,*j);
}
f1(k)
int *k;
{ *k+=15;}
f2(x)
int *x;
{ int m=*x, *n=&m;
*n+=10;
}
ans: 45 and 45
730. func(int x)
{
if(x<=0)
return (1);
return func(x-1)+x;
}
main()
{
printf("%d",func(5));
}
ans: 16
ans: 55 55
732. main()
{
int x=0,*p=0;
x++; p++;
printf ("%d and %d\n",x,p);
}
ans: 1 and 2
733. main()
{
int Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
printf("%d",Y);
else
printf("........");
}
ans: 13
734.
int i=10;
main()
{
int i=20,n;
for(n=0;n<=i;n++)
{
int i=10;
i++;
}
printf("%d", i);
}
ans: 20
735. main()
{
int i=20,j,k=0;
for(j=1;j<i;j=1+4*(i/j))
{
k+=j<10?4:3;
}
printf("%d", k);
}
ans: 4
736. main()
{
int i=10;
printf("%d %d %d",i++,i++,i--);
}
ans: 10 9 10
737. main()
{
int i=10;
if(1,i++,++i)
printf("The value for i is %d",i);
}
738. main()
{
int a=10,b=33;
a=a^b;
b=a^b;
a=a^b;
printf("%d %d", a,b);
}
ans: 33 10
739. main()
{
int *a;
int (*b)();
printf("%d %d",sizeof(a),sizeof(b));
}
ans: 4 4
740. main()
{
int i;
char *p;
i=0X89;
p=(char *)i;
p++;
printf("%x\n",p);
}
ans: 8a
741. main()
{
int x=0,*p=0;
x++; p++;
printf ("%d and %d\n",x,p);
}
ans: 1 and 2
ans: 5 0
744. main()
{
int a ,b=7;
a=b<4?b<<1:b=4?71:a;
printf("%d",a);
}
745. main()
{
int a ,b=7;
a=b<4?b<<1:(b=4?71:a);
printf("%d",a);
}
ans: 71
746. main()
{
int a,b;
a=(10.15);
b=10,15;
printf("%d %d",a,b);
}
747. main()
{
int a,b;
a=(10.15);
b=(10,15);
printf("%d %d",a,b);
}
748. main()
{
int a,b;
a=(10,15);
b=10,15;
printf("%d %d",a,b);
}
ans: 15 10
ans: 5 and 7
753. Which of the following is the correct code for strcpy, that
is used to copy the contents from src to dest?
754. main()
{
int X,b=7;
X = b>8 ? b <<3 : b>4 ? b>>1:b;
printf("%d",X);
}
ans: 3
755. main()
{
char *src = "Hello World";
char *dst;
dst = (char *)malloc(20);
while(*dst = *src){dst++;src++;}
printf("%s",dst);
getch();
}
ans: no output
756. main()
{
char *src = "Hello World";
char *dst;
dst = (char *)malloc(20);
while(*dst++ = *src++);
printf("%s",dst);
getch();
}
757. main()
{
char *src = "Hello World";
char *dst;
while(*dst++ = *src++);
printf("%s",dst);
getch();
}
758. main()
{
char *src = "Hello World";
char dst[20];
while(*dst++ = *src++);
printf("%s",dst);
getch();
}
int main()
{
int *ptr;
FUNC(ptr);
printf("Ptr:%x",ptr);
return 0;
}
ans: 5 6
762. main()
{
char *s = "Hello";
printf("%s",1(s));
}
763. main()
{
char *s = "Hello";
printf("%s",1[s]);
}
764. main()
{
char *s = "Hello";
printf("%s",&1[s]);
}
ans: ello
766. main()
{
int i;
i=(2,3);
printf("%d",i);
}
ans: 3
767. main()
{
char str[]="GESL";
printf("%d %d",sizeof(str),strlen(str));
}
ans: 5 4
768. main()
{
int i;
for(i=0;i++;i<100)
printf("hello world\n");
}
769. main()
{
char i;
for(i=1;i++;i<100)
printf("hello world %d\n",i);
}
770. main()
{
int i;
for(i=1;i++;i<100)
printf("hello world %d\n",i);
}
771. main()
{
char c;
scanf("%s",c);
}
772. main()
{
int k=5;
for(++k<5 && k++/5 || ++k<8);
printf("%d\n",k);
}
773. main()
{
int k=5;
if(++k<5 && k++/5 || ++k<8);
printf("%d\n",k);
}
ans: 7
774. main()
{
int k=5;
if(++k<5 && k++/5 && ++k<8);
printf("%d\n",k);
}
ans: 6
775. main()
{
int k=5;
if(++k<5 || k++/5 && ++k<8);
printf("%d\n",k);
}
ans: 8
776. main()
{
int k=5;
if(++k<5 || k++/5 || ++k<8);
printf("%d\n",k);
}
ans: 7
ans: 10 30
ans: True
ans: Flase
783. main()
{
FILE *fp;
printf("%d\n",sizeof(fp));
}
784. main()
{
int a=10,b=20;
a^=b^=a^=b;
printf("%d %d\n",a,b);
}
ans: 20 10
785. main()
{
int a=10,20;
int b;
a^=b^=a^=b;
printf("%d %d\n",a,b);
}
786. main()
{
int a,b;
a=(10,15);
b=10,15;
printf("%d %d",a,b);
}
ans: 15 10
787. main()
{
int i=10;
switch(i)
{
case 10: printf("Hello ");
{
case 1 : printf("World ");
}
case 5: printf("Hello World ");
}
}
788. main()
{
char str1[]="Hello";
char str2[]="Hello";
if ( str1==str2 )
printf("True\n");
else
printf("False\n");
}
ans: False
789. main()
{
# include <stdio.h>
int i = 10 ;
printf("%d\n", i/2 );
}
ans: 5
791. main()
{
int arr[]={ 1,2,3,4 };
int *ptr ;;;;
ptr++ = arr;
printf("%d,%d",ptr[2],arr[2]);
return 0;
}
792. main()
{
char s[10];
scanf ("%s",s);
printf(s);
}
what is the output if input is abcd
ans: abcd
793. main()
{
char c = 255;
printf ("%d",c);
return 0;
}
ans: -1
794. main()
{
int i;
for (i=7;i<=0;i--)
printf ("hello\n");
}
795. main()
{
printf( printf ("world") );
}
796. main()
{
scanf("%d");
printf();
}
797. main()
{
scanf("%d");
printf("manu");
}
799. main()
{
200;
printf("tricky problem");
}
ans: a)
ans: c)
ans: d)
ans: a)
ans: b)
ans: c)
ans: count=6
ans: b
ans: c
811. main()
{
int a;
char *p;
a = sizeof(int) * p;
printf("%d\n",a);
}
ans: True
814. main()
{
int a=8,d;
int *p;
p=&a;
d=a/*p;
printf("%d\n",d);
}
815. main()
{
int a=8,d;
int *p;
p=&a;
d=a/ *p;
printf("%d\n",d);
}
ans: 1
816. main()
{
char *a="Hello";
a++ = 'h';
printf("%s\n",a);
}
817. main()
{
char *a="Hello";
*a++ = 'h';
printf("%s\n",a);
}
ans: ello (here assignment is to *a and increment is
on a)
818. main()
{
char p[]="Hello";
p[0]='h';
printf("%s\n", p);
}
ans: hello
820. main()
{
int *p=10;
printf("%d\n",*p);
}
821. main()
{
int *p=10;
printf("%d\n",p);
}
ans: 10
822. main()
{
int i=-1;
i<<=2;
printf("%d\n",i);
}
ans: -4
823. main()
{
int i= 0xffffffff;
printf("%d\n",i);
}
ans: -1
824. main()
{
int A=1,B=2;
if(A==B < printf("Hello "))
printf("world\n");
else
printf("Bangalore\n");
}
825. main()
{
int i;
for(i=0; i< 10; i++)
{
int j=10;
j++;
printf("j= %d\n", j);
}
}
ans: expr= 5
829. main()
{
int *p ;
p=(int *)malloc(-10);
printf("%d",p);
free(p);
}
830. main()
{
int *p ;
p=(int *)malloc(10);
printf("%d",p);
free(p);
}
ans: 2266 (starting address of the allocated block)
831. main()
{
for(printf("a");printf("b");printf("c"));
}
832. fun()
{
return 10 ;
}
main()
{
int i= 10 * fun() ;
printf("%d",i);
}
ans: 100
833. fun()
{
return 10 ;
}
int i= 10 * fun() ;
main()
{
printf("%d",i) ;
}
834. main()
{
int i=100 ;
printf("%d ", sizeof(i++));
printf("%d ",i) ;
}
ans: 2 100 (sizeof operator operand will not be
evaluated)
835. main()
{
int i=100 ;
printf("%d ", sizeof(++i);
printf("%d ",i) ;
}
836. main()
{
int i=100 ;
printf("%d ", sizeof(++i++));
printf("%d ",i) ;
}
837. Which one of the following data structures is best suited for
searching ?
a) Arrays
b) Singly Linked List
c) Doubly Linked List
d) Hash Table
ans: d)
a) Arrays
b) Singly Linked List
c) Doubly Linked List
d) Hash Table
ans: c)
839. Which one of these is not a scheduling technique in Operating
System?
a) Last-Come-First-Serve Scheduling
b) First-Come-First-Serve Scheduling
c) Preemptive Scheduling
d) Round Robin Scheduling
ans: a)
a) Deadlock Detection
b) Deadlock Avoidance
c) Deadlock Prevention
d) All of the above
ans: b)
841. main()
{
int a = 1;
#define p a
printf("%d %d ",a++,p++);
}
ans: 2 1
842. main()
{
#include<stdio.h>
int a = 90 ;
printf("%d",a) ;
}
ans: 90
843. main()
{
main() ;
}
ans: hello
ans: 90
847. main()
{
int i=1 ;
printf(i ?"one" : "zero") ;
}
ans: one
848. main()
{
int i=1;
printf("%d",i ? 1 : 0) ;
}
ans: 1
849. main()
{
int a=90,b=100;
a++;
a=(a ^ b) ^ (a = b );
b = a^b^a ;
--a ;
printf("%d %d",a++,b++) ;
}
ans: 90 100
850. main()
{
int a = 10 , b = 100 ;
swap(&a , &b) ;
printf("%d %d",a,b) ;
}
swap(int *a , int *b)
{
*a = *a + *b ;
*b = *a - *b ;
*a = *a - *b ;
swap1(&a , &b) ;
}
swap1(int **a , int **b)
{
**a = **a + **b ;
**b = **a - **b ;
**a = **a - **b ;
}
ans: 10 100
851. main()
{
void *ptr ;
int a = 10 ;
ptr = &a ;
printf("%d",*ptr) ;
}
852. main()
{
void *ptr ;
int a = 90 ;
char *ptr1 = "hello" ;
ptr = a ;
ptr = ptr1 ;
}
853. main()
{
char *p = "helloo" ;
char *p1 = "strcat" ;
while((*(p++) = *(p1++)) != '\0')
{
;
}
}
854. int g = 10 ;
main()
{
int g = 10 ;
printf("%d",g) ;
}
int g ;
ans: 10
855. int g = 10 ;
main()
{
extern int g;
printf("%d",g) ;
}
int g ;
ans: 10
856. //int g = 10 ;
main()
{
extern int g;
printf("%d",g) ;
}
int g ;
ans: 0
857. main()
{
int a = 1 ;
int b = 0 ;
a = a++ + --b * a++ ;
printf("%d",a) ;
}
ans: 2
858. struct s
{
int si;
union u
{
float uf;
char uc;
};
};
main()
{
printf("%d",sizeof(struct s));
}
859. struct s
{
int si;
union u
{
float uf;
char uc;
}a;
};
main()
{
printf("%d",sizeof(struct s));
}
ans: 6
860. struct st
{
int a;
char b;
}
main()
{
}
862. struct a
{
int i;
int display()
{
printf("hello world\n");
}
};
main()
{
strcut a vara;
vara.display();
}
863. struct a
{
int (*ptr)();
};
int display()
{
printf("Global Edge\n");
}
main()
{
struct a structa;
structa.ptr=display;
structa.ptr();
}
ans: x = 2 y = 2
int main()
{
printf("\nsize %d",sizeof(abc));
}
868. main()
{
int a;
fun();
printf("%d",a);
a=50;
}
fun()
{
int i;
*(&i+4) = 100;
}
869. main()
{
#define x 5
int b;
b = x;
printf("%d",b);
}
ans: 5
870. main()
{
int a; #define y 10
a=y;
printf("%d",a);
}
ans: Hell
A)COMMENT_NEST_LIMIT times
B)COMMENT_LIMIT times
C)ONE time
D)Not even Once
ans: D)
874. main()
{
int i,j;
i = 06;
j = 09;
printf ("%d %d\n",i,j);
}
875. main()
{
int i,j;
i = o6;
j = 09;
printf ("%d %d\n",i,j);
}
ans: 1 GESL
879. main()
{
int i=10;
float j=2.5;
printf("%d ",sizeof(j+++i++));
printf("%d %f",i,j);
}
ans: 4 10 2.500000
ans: 1 5
ans: 1
885. int i =20;
int maxlen = i;
int main()
{
int j = i;
printf("i=%d , j=%d\n", i , j);
}
ans: 20 10
ans: 10 20
ans: b)
ans: 10 10 10
ans: hello…5
893. int main()
{
printf("%%% s","hello");
}
ans: %hello
(a) char
(b) int
(c) unsigned int
(d) void
ans: (b)
895. main()
{
int i = 24;
printf("%xd",i);
}
ans: 18d
896. main()
{
int i = 24;
printf("%0xd",i);
}
ans: 18d
ans: 6
main()
{
node n1;
printf("%d",n1.i);
}
901. struct
{
int i;
}node ;
main()
{
printf("%d",node.i);
}
ans: 0
902. main()
{
struct
{
int i;
}node ;
printf("%d",node.i);
}
main()
{
struct node_tag n1;
n1.pt=&n1;
n1.pt->a=5;
printf("%d",n1.a);
}
ans: 5
905. main()
{
int n;
scanf("%d",n);
}
(a)pointer to void
(b)pointer to any data type
(c)generic pointer
(d)None of the above
ans: (c)
907. main()
{
int i=5;
i=i++ * i++;
printf("%d",i);
}
ans: 27
908. main()
{
int i=5;
printf("%d",i++ * i++);
}
ans: 30
912. union u
{
int ival;
float fval;
char *sval;
}
size of u is?
ans: 4 bytes
913. struct x
{
int i; int j;int k;
};
struct x *p;
struct x arr[3];
p =&arr[0];
p++;
what is p pointing to?
a) pointing to i of arr[0]
b) pointing to j of arr[0]
c) pointing to k of arr[1]
d) pointing to i of arr[1]
ans: d)
914. struct a
{
int b;
};
struct b
{
int b;
};
int main()
{
struct a first;
struct b second;
first.b =10;
second = first;
printf("%d",second.b);
}
915. struct a
{
int b;
};
int main()
{
struct a first,second;
first.b =10;
second = first;
printf("%d",second.b);
}
916. struct a
{
int x;
float y;
double z;
struct a b;
};
int main()
{
;
}
917. struct a
{
int x;
float y;
double z;
struct a *b;
};
int main()
{
;
}
ans: no error
918. struct a
{
struct b
{
int a;int b;
}c;
int *ptr;
}d;
int main()
{
d.ptr=&d.c.a;
}
ans: no error
ans: 2 1 1
923. main()
{
int i;
for( i=0; i<10-1; i+=2 );
i+= 2;
printf("i = %d\n", i );
}
ans: i = 12
924. f()
{ return 1,2,3; }
main()
{
int i;
i = f();
printf("%d",i );
}
ans: 3
ans: b)
930. If the command line arguments for the following program are
<a.out>
and <GlobalEdgeSoftwareLtd>, what is the output of the
program ?
ans: x = 12, y = 17
932. main()
{
int i,j;
int arr[4][4] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
for (i=2;i<0;i--)
for (j=2;j<=0;j--)
printf("%d", arr[i][j]);
}
ans: no output
ans: 2 3
ans: 11 7 3 10 6 2 9 5 1
ans: 21 22
ans: no error
ans: 3
942. f1(int c)
{
printf("%d", c);
}
main()
{
int a=2;
f1(a++);
}
ans: 2
943. f(int t)
{
switch(t)
{
int c;
case 2: c=3;
case 3: c=4;
case 4: c=5;
case 5: c=6;
default: c=0;
}
printf("%d",c);
}
main()
{
f(3);
}
944. f(int t)
{
int c;
switch(t);
{
case 2: c=3;
case 3: c=4;
case 4: c=5;
case 5: c=6;
default: c=0;
}
printf("%d",c);
}
main()
{
f(3);
}
945. f(int t)
{
int c;
switch(t)
{
case 2: c=3;
case 3: c=4;
case 4: c=5;
case 5: c=6;
default: c=0;
}
printf("%d",c);
}
main()
{
f(3);
}
ans: 0
946. What is the fallacy in the following program segment?
int *f1()
{
int a=5;
return &a;
}
f()
int *b=f1()
int c=*b;
}
int *x();
int *(*x)();
int ( (*x)() )[];
int ( (*x[])() )[];
ans: (a)
951. struct a
{
char b[7];
char *s;
};
struct b
{
char *t;
struct a y;
};
main()
{
struct b q={"Raipur" , "Kanpur" , "Jaipur"};
printf("%s %s " , q.t , q.y.s);
printf("%s %s" ,++q.t , ++q.y.s);
}
952. main()
{
int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
}
ans: 1,2
953. main()
{
int i;
for(i=0; i<=10;i++,printf("%d ",i));
}
ans: 1 2 3 4 5 6 7 8 9 10 11
954. main()
{
int a[]={10,20,30,40,50};
fun(a+1);
}
fun(int *p)
{
for(int i=1;i<=3;i++)
printf("%d",*(p+i));
}
955. main()
{
int a[]={10,20,30,40,50};
fun(a+1);
}
fun(int *p)
{
int i;
for( i=1;i<=3;i++)
printf("%d",*(p+i));
}
ans: 30 40 50
956. main()
{
enum day {saturday,
sunday=3,
monday,
tuesday
};
printf("%d %d",saturday,tuesday);
}
ans: 0 5
957. main()
{
int x;
enum day {
saturday,
sunday=-1,
monday,
tuesday
};
x=monday;
printf("%d",x);
}
ans: 0
ans: 5
960. int x;
int *p;
int **p1;
int ***p2;
How to assign each one?
ans: p=&x;
p1=&p;
p2=&p1;
ans: (a)
963. main()
{
char str={'H','E','L','L','O','\0'};
printf("%s/n",str+1);
}
ans: error
964. main()
{
char arr[5]={'a','a','b','c','d','e'};
printf("%s",arr);
}
ans: % \% % %%
966. main()
{
printf("%%%%% ");
printf("%%%%%% ");
printf("%");
}
967. main()
{
int i=3;
while(i>=0)
printf("%d ",i--);
return(0);
}
968. main()
{
int i=10;
printf("%d %d %d ",i,++i,i++);
}
ans: 12 12 10
969. main()
{
int x,y,z;
x=2;
y=5;
z=x+++y;
printf("%d %d %d",x,y,z);
}
ans: 3 5 7
main()
{
char s[10];
xyz(s);
}
main()
{
char s[10];
xyz(s);
}
ans: 10
972. main()
{
int i=6;
printf("%d",i++*i++);
}
ans: 42
973. main()
{
char str[20] = "SANJAY";
printf("%d %d",sizeof(str),strlen(str));
}
ans: 20 6
974. main()
{
unsigned int i=3;
while( i >=0)
printf( "%d", i--);
}
ans: 10 0 0
976. func()
{
static int i = 10;
printf("%d",i);
i++;
}
ans: 12
977.
func(int *i, int*j)
{
*i=*i * *i;
*j=*j* *j;
}
main()
{
int i = 5, j = 2;
func(&i,&j);
printf("%d %d", i, j);
}
ans: 25 4
void main()
{
char *p="bye";
f(p);
printf("%s",p);
}
ans: bye
main()
{
char *a="new";
x(a);
printf("%s",a);
}
ans: 40
ans: 2
987. #define TRUE 0
main()
{
int i=0;
while(TRUE)
{
printf(" %d \n",i);
i++;
}
printf(" %d \n",i);
i++;
}
ans: 0
988. main()
{
int a[4]={1,2,3,4};
int *ptr;
ptr=a;
*(a+3)=*(++ptr)+(*ptr++);
printf("%d",a[3]);
}
ans: 4
ans: BYE
ans: HELLO
993. main()
{
char str[5]="hello";
if(str==NULL) printf("string null");
else printf("string not null");
}
996. struct a
{
int x;
float y;
char c[10];
};
union b
{
int x;
float y;
char c[10];
};
main()
{
printf("%d %d",sizeof(a),sizeof(b));
}
ans: error (here sizeof operator operand should be
type name not tag name)
997. struct a
{
int x;
float y;
char c[10];
};
union b
{
int x;
float y;
char c[10];
};
main()
{
printf("%d %d",sizeof(struct a),sizeof(union b));
}
ans: 16 10
998. main()
{
char a[10]="hello";
strcpy(a,'\0');
printf("%s",a);
}
999. main()
{
char a[10]="hello";
strcpy(a,”\0”);
printf("%s",a);
}
ans: no output
ans: i=5 =5
1001. main()
{
int *s = "\0";
if(strcmp(s,NULL)== 0)
printf("\n s is null");
else
printf("\n s is not null");
}
ans: error
1002. main()
{
int *s = "";
if(strcmp(s,NULL)== 0)
printf("\n s is null");
else
printf("\n s is not null");
}
ans: error
ans: 1,2,3,4
1004. func(int *i, int*j)
{
*i=*i * *i;
*j=*j* *j;
}
main()
{
int i = 5, j = 2;
func(&i,&j);
printf("%d %d", i, j);
}
ans: 25 4
main()
{
char *a="new";
x(a);
printf("%s",a);
}
main()
{
char *a="new";
x(a);
printf("%s",a);
}
ans: new
main()
{
char *a="new";
x(a);
printf("%s",a);
}
1008. a. for(i=0;i<num;i++)
b. for(i=num;i>0;i--)
Assuming no code optimization and assume that the
microprocessor
has flags etc. which one is correct
ans: no
1011. main()
{
char S[6]= "HELLO";
printf("%s ",S[6]);
}
1013. main()
{
char *x="string";
char y[]="add";
char *z;
z=(char *) malloc(sizeof(x)+sizeof(y)+1);
strcpy(z,y);
strcat(z,x);
printf("%s+%s=%s",y,x,z);
}
ans: add+string=addstring
ans: (B)
ans: (A)
1018. main()
{
int I,j;
for(I=0, j=I++; j>I; j++, I++)
{
printf("%d %d", I, j);
}
}
ans: no output
ans: 10
ans: 4
ans: A GMA
ans: A A
#include <stdio.h>
&
#include “stdio.h”
(A) No Difference
(B) The 2nd declaration will not compile
(C) First case Compiler looks in all default location and in
2nd case only in the working directory
(D) Depends on the Compiler
ans: (C)
int main()
{
printf ("The Square root of all parts is %d\n" , ALL_PARTS
* ALL_PARTS);
return(0);
}
1027. main()
{
char **p="Hello";
printf("%s ",p);
printf("%c",*p);
//printf("%c",**p);
}
ans: Hello H
1028. main()
{
char **p="Hello";
printf("%s ",p);
printf("%c",*p);
printf("%c",**p);
}
ans: error (trying to access memory location 72
which may not be accessible)
1029. main()
{
char str[]="Geneius";
print (str);
}
print(char *s)
{
if(*s)
print(++s);
printf("%c ",*s);
}
1030. main()
{
printf("Genius %d",fun(123));
}
fun(int n)
{
return (printf("%d",n));
}
ans: 123Genius 3
1031. main()
{
int i=4;
fun(i=i/4);
printf("%d",i);
}
fun(int i)
{
return i/2;
}
ans: 1
1032. main()
{
printf("\"NITK %%SURATHKAL%% !\"");
}
1033. main()
{
printf("\"NITK \%SURATHKAL\% !\"");
}
1034. main()
{
char str[7]="strings";
printf("%s",str);
}
1035. main()
{
char str[8]="strings";
printf("%s",str);
}
ans: strings
1036. main()
{
char *p = "Oracle India";
p[5] == 'l' ? printf("Orcle") : printf("India");
}
ans: India
1037. main()
{
int i=5;
recursive(i);
}
recursive(int u)
{
if(u > 0 )
recursive(u-1);
printf("%d ", u);
}
ans: 0 1 2 3 4 5
ans: 2
1040. main()
{
const int MAX=10;
enum a {a,b,MAX};
printf("%d",MAX);
}
1042. 1)enum object is a const which can only be assigned a value at
initialization or 2) a variable which can be assigned any value
in the middle of the program?
ans: 1) is correct
1044. main()
{
int i=4;
fun(i=i/4);
printf("%d",i);
}
fun(int i)
{
return i/2;
}
ans: 1
1045. main()
{
int a=500,b,c;
if(a>400)
b=300; c=2--; printf("%d %d",b,c);
}
1046. main()
{
char c1='a',c2='Z';
if (c1=='a'or c2=='z')
printf("welcome");
}
1047. main()
{
int i;
for(i=0;i<=10;i++);
printf("%d ",i);
}
ans: 11
1048. main()
{
int x=10,y,z;
y=--x;
z=x--;
printf("%d %d %d",x,y,z);
}
ans: 8 9 9
1049. main()
{
int i;
int marks[]={100,90,75,90,80};
for (i=0;i<4;i++)
disp(&marks[i]);
}
disp(int *n)
{
printf("%d ",*n);
}
ans: 100 90 75 90
1050. main()
{
int arr[]={1,2,3,4,5,6,7};
int *I,*j;
I=&arr[1];
j=&arr[5];
printf("%d %d",*j+*I,*j-*I);
}
1051. main()
{
int n=2,sum=5;
switch(n)
{
case 2:sum=sum-2;
case 3:sum*=5;
break;
default:sum=0;
}
printf("%d",sum);
}
ans: 15
1052. main()
{
int i=0;
for(i=0;i<20;i++)
{
switch(i)
{
case 0:
i+=5;
case 1:
i+=2;
case 5:
i+=5;
default:
i+=4;
break;
}
printf("%d ",i);
}
}
ans: 16 21
1053. main()
{
int i=0;
for(i=0;i<20;i++)
{
switch(i)
{
default:
i+=4;
break;
case 0:
i+=5;
case 1:
i+=2;
case 5:
i+=5;
}
printf("%d ",i);
}
}
ans: 12 17 22
1054. main()
{
int i=0;
for(i=0;i<20;i++)
{
switch(i)
{
default:
i+=4;
case 0:
i+=5;
case 1:
i+=2;
case 5:
i+=5;
}
printf("%d ",i);
}
}
ans: 12 29
1055. func(int i)
{
if(i%2) return 0;
else return 1;
}
main()
{
int i=3;
i=func(i);
i=func(i);
printf("%d",i);
}
ans: 1
1056. char*g()
{
static char x[1024];
return x;
}
main()
{
char*g1="First String";
strcpy(g(),g1);
g1=g();
strcpy(g1,"Second String");
printf("Answer is:%s", g());
}
1057. main()
{
int a[5]={1,3,6,7,0};
int *b;
b=&a[2];
printf("%d",b[-1]);
}
ans: 3
ans: (D)
1059. main()
{
int i = 5;
printf("%d\n", i--*i++);
}
ans: 20
1060. main()
{
int i = 5;
printf("%d\n", i++*i--);
}
ans: 30
1061. main()
{
int i = 5;
printf("%d %d", i,i++*i--*i++);
}
ans: 6 150
1062. main()
{
char ch='a';
printf("%d ",ch);
printf("%d",((int)ch)++);
}
1065. main()
{
int i=1 ;
for (;;);
{
if(i==1)
{
printf("%d",i);
exit();
}
}
}
ans: India
int func(int y)
{
static int x = 0;
x++;
y = y + x;
return(y);
}
ans: 6 8 11 15 20
int func1(int d)
{
int ret1;
ret1 = func2(--d);
return(ret1);
}
int func2(int y)
{
return(++y);
}
ans: i
ans: -1 1
ans: 11
return, return;
return(1, 2, 3);
return(return 4);
(return 5, return 6);
ans: 4
ans: 1,4,6
ans: 6 2 1 5
ans: 11110
1083. union
{
int a;
char b;
char c[10];
}u1;
void main()
{
int l=sizeof(u1);
printf("%d",l);
getch();
}
ans: 10
ans: 0 -5 -2 2
ans: C
ans: 1,2,
ans: 2 3
1089. main()
{
char *p="abc";
char *q="abc123";
while(*p=*q)
{
printf("%c %c ",*p,*q);
getch();
}
}
ans: error
1092. main()
{
int A=5,x;
int fun(int *, int);
x=fun(&A,A);
printf("%d",x);
}
1093. main()
{
int A=5,x;
int fun(int *, int);
x=fun(&A,A);
printf("%d",x);
}
int fun(int *x, int y);
1094. main()
{
int A=5,x;
int fun(int *, int);
x=fun(&A,A);
printf("%d",x);
}
ans: 30
1095. main()
{
int i;
int x[]={0,0,0,0,0};
for(i=1;i<=4;i++)
x[x[i]]++;
for(i=0;i<5;i++)
printf(" %d",x[i]);
}
ans: 4 0 0 0 0
1096. main()
{
int i,j,count;
int a[3][4] = { -1,2,3,-4,5,6,7,-8,9,10,11,12};
count=0;
for(i=2;i<1;i--)
{
for(j=3;j<1;j--)
{
if(a[i][j]<1)
count+=1;
}
}
printf("%d",count);
}
ans: 0
ans: 4 7 9 10 10 9 7 4
ans: 2 3 5 8 13 21
ans: 18 4
1101. display()
{
printf (" Hello World");
return 0;
}
void main (void)
{
int (*func_ptr)();
func_ptr = display;
(* func_ptr)();
}
ans: AAAAAABCDEFG
ans: three
1106. main()
{
char *p = "MISTRAL";
printf ("%c\t", *(++p));
p -=1;
printf ("%c\t", *(p++));
}
ans: I M
ans: 100 5
ans: no output
1111. main()
{
int x;
float y;
y = *(float *)&x;
}
ans: no output
1114. main()
{
printf("hello"):
main();
}
1116. main()
{
printf("%u",-1);
}
ans: 65535
a)stored in swap
b)stored in stack and poped out after function returns
c)stored in data area
d)stored in disk
ans: b)
1118. main()
{
printf(5+"facsimile");
}
ans: mile
1119. How to fine the size of the int without using size of operator?
1120. main()
{
char a[2];
*a[0]=7;
*a[1]=5;
printf("%d",&a[1]-a);
}
ans: error (invalid indirection)
1121. main(){
char a[]="hellow";
char *b="hellow";
char c[5]="hellow";
printf("%s %s %s ",a,b,c);
printf(" ",sizeof(a),sizeof(b),sizeof(c));
}
1122. main()
{
float value=10.00;
printf("%g %0.2g %0.4g %f",value,value,value,value);
}
ans: 10 10 10 10.000000
[i] a[i]
[ii] i
[iii] 2
[iv] *(a+i)
ans. [iii]
1124. main()
{
int i=10,j;
for(j=0;j<1;j++)
{
int i=20;
printf("%d ",i);
}
printf("%d",i);
}
ans: 20 10
1125. main()
{
int i;
printf("%d",i);
}
extern int i=20;
1126. main()
{
extern int i;
printf("%d",i);
}
int i=20;
ans: 20
1127. main()
{
int n=6;
printf("%d",n)
;
}
ans: 6
1128. main()
{
int arr[5]={2,4};
printf("%d %d %d \n",arr[2],arr[3],arr[4]);
}
ans: 0 0 0
1129. main()
{
struct e
{
char name[20];
int a;
float b;
};
struct e ast={"Hell"};
printf("%d %f \n",ast.a,ast.b);
}
ans: 0 0.000000
1133. Given two strings S1 and S2. Delete from S2 all those characters
which occur in S1 also and finally create a clean S2 with the
relevant characters deleted.
iterative loop
curr->next = prev;
prev = curr;
curr = next;
next = curr->next
endloop
recursive reverse(ptr)
if (ptr->next == NULL)
return ptr;
temp = reverse(ptr->next);
temp->next = ptr;
return ptr;
end
1136. Given an array of characters. How would you reverse it. ? How
would you reverse it without using indexing in the array.
1141. Write an efficient C code for 'tr' program. 'tr' has two command
line arguments. They both are strings of same length. tr reads
an input file, replaces each character in the first string with the
corresponding character in the second string. eg. 'tr abc xyz'
replaces all 'a's by 'x's, 'b's by 'y's and so on. ANS.
a) have an array of length 26.
put 'x' in array element corr to 'a'
put 'y' in array element corr to 'b'
put 'z' in array element corr to 'c'
put 'd' in array element corr to 'd'
put 'e' in array element corr to 'e'
and so on.
the code
while (!eof)
{
c = getc();
putc(array[c - 'a']);
}
p1 = p2 = head;
do {
p1 = p1->next;
p2 = p2->next->next;
} while (p1 != p2);
1146. Given a singly linked list, print out its contents in reverse order.
Can you do it without using any extra space?
ans: Start reversing the list. Do this again, printing the contents.
ans:
node * reverse (node * n)
{
node * m ;
1148. Given a singly linked list, find the middle of the list.
HINT. Use the single and double pointer jumping. Maintain two
pointers, initially pointing to the head. Advance one of them one
node at a time. And the other one, two nodes at a time. When
the double reaches the end, the single is in the middle. This is
not asymptotically faster but seems to take less steps than going
through the list twice.
ans:
#define reverse(x) \
(x=x>>16|(0x0000ffff&x)<<16, \
x=(0xff00ff00&x)>>8|
(0x00ff00ff&x)<<8, \
x=(0xf0f0f0f0&x)>>4|
(0x0f0f0f0f&x)<<4, \
x=(0xcccccccc&x)>>2|
(0x33333333&x)<<2, \
x=(0xaaaaaaaa&x)>>1|
(0x55555555&x)<<1)
ans:
#define count_ones(x) \
(x=(0xaaaaaaaa&x)>>1+(0x55555555&x), \
x=(0xcccccccc&x)>>2+(0x33333333&x), \
x=(0xf0f0f0f0&x)>>4+(0x0f0f0f0f&x), \
x=(0xff00ff00&x)>>8+(0x00ff00ff&x), \
x=x>>16+(0x0000ffff&x))
ans:
#define discrete_log(h) \
(h=(h>>1)|(h>>2), \
h|=(h>>2), \
h|=(h>>4), \
h|=(h>>8), \
h|=(h>>16), \
h=(0xaaaaaaaa&h)>>1+(0x55555555&h), \
h=(0xcccccccc&h)>>2+(0x33333333&h), \
h=(0xf0f0f0f0&h)>>4+(0x0f0f0f0f&h), \
h=(0xff00ff00&h)>>8+(0x00ff00ff&h), \
h=(h>>16)+(0x0000ffff&h))
#define zero_most_significant(h) \
(h&=(h>>1)|(h>>2), \
h|=(h>>2), \
h|=(h>>4), \
h|=(h>>8), \
h|=(h>>16))
1155. Given two strings S1 and S2. Delete from S2 all those characters
which occur in S1 also and finally create a clean S2 with the
relevant characters deleted.
1158. Given a list of numbers ( fixed list) Now given any other list, how
can you efficiently find out if there is any element in the second
list that is an element of the first list (fixed list).
1159. Print an integer using only putchar. Try doing it without using
extra storage.
1162. Give the outputs of a compiler and assembler and loader and
linker etc.
ans: 2