0 votes
2 answers
1
#include<stdio.h>int main(){ int arr[3] = {2, 3, 4}; char * p; p = arr; p =(char *)(int*)(p); printf("%d, ", *p); p = (int*)(p+2); printf("%d", *p); ...
0 votes
2 answers
2
#include <stdio.h>int main(){ int a=9; printf("%d %d %d",++a,a++,++a); return 0;}what is the output?According to me it should be 12 10 10
0 votes
1 answer
3
#include <stdio.h>int main(){ char *c[]={"abhi","abhishek","abhisheksing"}; printf("%s",c [7]); return 0;}What is the output?
0 votes
0 answers
4
include <stdio.h>int main(){ char *c[]={"abhi","abhishek","abhisheksing"}; printf("%s",(*(*(c+2)+7))); return 0;} What is the output?
0 votes
0 answers
5
#include<stdio.h>void main(){ char c[]="abhishek"; for(int i=0;i<8;i++) {c[i]="a"; printf("%c",c[i]); } }What is the error in it?
0 votes
0 answers
6
PLs tell what are all the topics that i hve to study at physical layer in networking
1 votes
1 answer
7
0^i1^j0^k|j=max(i,k) is CFL or not pls explain?
0 votes
0 answers
8
My doubt is that when a process makes a transition from Run to terminate step immediately a process is invoked from new to ready state
0 votes
1 answer
9
My doubt is it always true that the number of state in NFA is always less than number of state required in DFA for all language which are regular?
0 votes
2 answers
10