#include <stdio.h>int const print(){printf("Sookshmas.com");return 0;}void main(){print();}
Find the output of the following code.Public class Solution{Public static void main(String args[ ]){Int i; for(i = 1; i < 8; i++).{if(i > 2) continue;}System.out.println(i);}}
#include<stdio.h>int main(){int i;char a[] = "\0";if(printf("%s", a))printf("The string is empty\n");elseprintf("The string is not empty\n");return 0;}
#include <stdio.h>int main(){int a;int b=1;int x[5] = { 1,2,3,4,5};a=5*4+x[--b]-(9/b);printf("%d",a);return 0;}