How To Make Table In CPP Program
Coding:
#include<iostream> using namespace std; int main() { cout<<"subject " <<"\tmarks"<<"\nmathematic\t" <<90<<"\ncomputer\t"<<77<<"\nchemistry\t"<<69; return 0; }
<<Back
Bsit Special | Bsit past papers for all semester | Books for bsit | Notes For bsit for all semester| C++ Questions and Answer| Cpp/C++ full course in urdu/hindi | Java| Python| Html | Online C++ Mcqs| Programs in c++ |BSCS BSSE BSIT Past Papers | bs programs past papers And notes for all semester |Online c++ quiz Answer And questions|
#include<iostream> using namespace std; int main() { cout<<"subject " <<"\tmarks"<<"\nmathematic\t" <<90<<"\ncomputer\t"<<77<<"\nchemistry\t"<<69; return 0; }
subject | marks |
---|---|
Mathematics | 90 |
Computer | 77 |
Chemistry | 69 |
Post a Comment