CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Created by Nariman Tajari
#include <iostream>
using namespace std;
int main() {
typedef struct {char ch;} st;
st s1, s2;
s1.ch = 'c';
s2.ch = s1.ch;
if (s1.ch==s2.ch)
cout<<"sucessfull";
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run