Tuesday, September 10, 2013

Print "Hello World" Without Using Semicolon


Source Code :
 #include <stdio.h>  
 int main() {  
 if(printf("Hello World")) {  
 /*  
 * It prints Hello world and returns the  
 * value 11 i.e Length of the String  
 */  
 }  
 }  



Create a list in SwiftUI with sticky section headers

 Sample Code import SwiftUI struct ContentView : View {     @State var isCustomViewControllerDisplayed = false     @State private va...