Python Related (3312)
PHP Related (7341)
Scala (340)
R Programming (396)
Kotlin (184)
Apache Groovy (39)
Ruby (245)
Go Programming Language (139)
Objective-C (429)
Programming Languages AllOther (746) which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
5 16527main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
AMCAT, HCL, Ramco, Zycus Infotech,
7 27157main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
10 19626#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
4 20326#include
#include
#include
how to convert binary to decimal and decimal to binary in C lanaguage
BPO, Far East Promotions, IBM, RBS,
7 28415
What is use of set in python?
How a pointer is represented in go?
Finally, tell us about bitwise operators in python?
Is empty python dataframe?
What is the use of post in php?
Can we declare a function inside a function in c?
What is mass assignable in laravel?
Is c easy to learn?
Does drupal enable search engine friendly urls?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the use of Publishing options while creating blogs?
Can you host your own wordpress website?
Which is better get or post method?
Can I have my own domain name with wordpress?
Explain list, tuple, set, and dictionary and provide at least one instance where each of these collection types can be used.