programming languages Online Quiz - 343
Description: programming languages Online Quiz - 343 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
void main() { ; }
void main() { struct { int EmpNo; } var; var.EmpNo=193149; printf("EmpNo: %d",var.EmpNo); }
void main() { char ch='ABCD'; switch(ch) { case 'ABCD': printf("HelloABCD"); break; case 'A': printf("HelloA"); break; case 'B': printf("HelloB"); break; case 'C': printf("HelloC"); break; case 'D': printf("HelloD"); break; } }
void main() { int Add() { return 50; } printf("%d",Add()); }
void main() { printf("Hello"); return 5; printf(" World"); }
Using Proc SQL, we can create a macro variable.
void main() { int i=5; i+=i*=i-=i/i; printf("%d",i); }
How many types of Merge are there.
length(string) - returns number of characters in a string
substr(string,position,) - returns pieces of a variable