Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h> void main() { int a=25; printf("%o %x",a,a); }
def cube(y): return y*y*y; g = lambda x: x*x*x print(g(7)) print(cube(5))
char a[]="Sookshmas"char *ptr="Sookshmas"