import 'package:flutter/material.dart';
void main(List<String> args) {
runApp(MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text("first app"),
),
body: const Text("welcome to Flutter"),
),
));
}
3 Nodes Linked List Implementaion Single Linked list #include<iostream> using namespace std; struct Node{ int data; Node* next; Node...
No comments:
Post a Comment