What will be the output of the following Python program?def addItem(listParam):listParam += [1]mylist = [1, 2, 3, 4]addItem(mylist)print(len(mylist))
#includestdio.hint main(){char *names[] = { "Anil", "abhi", "Sanmati", "Shobha", "prajwal"};int i;char *t;t = names[3];names[3] = names[4];names[4] = t;for(i=0; i=4; i++)printf("%s,", names[i]);return 0;}
#includestdio.hWhat will replace %u in the output of statement printf?#includelimits.hint main(){unsigned int var1=0;unsigned int var2=UINT_MAX;printf("range of unsigned integer is from %u to %u ",var1,var2);return 0;}
find the output of the code#include stdio.hint main(){int i = 3;printf("%d", (++i)++);return 0;}
#include "stdio.h"int main(){int x, y = 5, z = 5;x = y == z;printf("%d", x);getchar();return 0;}
int q=2;