एरे के चौथे एलिमेंट तक पहुचने के लिए सही विकल्प चुनें :<break-line><break-line>Choose the correct option to access the 4th element of the array:<break-line><pre><code>int z [30];
int *pz;
pz = z;</code></pre>
निम्नलिखित कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following code?<break-line><pre><code>#include<stdio.h>
void solve(){
char ch[5] = "abcde";
int ans = 0;
for(int i=0; i < 5; i++){
ans += (ch[i] - 'a');
}
printf("%d", ans);
}
int main(){
solve();
return 0;
}</code></pre>