C basics 4 std11(GujBoard)

I
Chapter 3: Introduction to C Programming Language,[object Object],C development environment,[object Object],A simple program example,[object Object],Characters and tokens,[object Object],Structure of a C program,[object Object],comment and preprocessor directives,[object Object],basic data types,[object Object],data declarations,[object Object],statements,[object Object],Basic functions,[object Object]
Program is,[object Object],created in the,[object Object],Editor and ,[object Object],stored on Disk.,[object Object],   Editor,[object Object],Phase 1 :,[object Object],Disk,[object Object],Disk,[object Object],Compiler ,[object Object],creates object,[object Object],code and stores ,[object Object],it  on Disk.,[object Object],Compiler,[object Object],Phase 3 :,[object Object],Disk,[object Object],Linker links object ,[object Object],code with libraries, ,[object Object],creates a.out and ,[object Object],stores it  on Disk.,[object Object],    Linker,[object Object], Phase 4 :,[object Object],Disk,[object Object],C Development Environment,[object Object],Preprocessor,[object Object],program,[object Object],processes the ,[object Object],code.,[object Object],   Preprocessor,[object Object],Phase 2 :,[object Object]
  Primary,[object Object],  Memory,[object Object],Loader,[object Object], Phase 5 :,[object Object],Loader puts,[object Object],Program in,[object Object],Memory,[object Object],:,[object Object],.,[object Object],Primary,[object Object],  Memory,[object Object],C P U,[object Object],Phase 6 :,[object Object],CPU takes each,[object Object],instruction and ,[object Object],executes it, storing,[object Object],new data values as,[object Object],the program executes.,[object Object],:,[object Object],.,[object Object]
From code to executables,[object Object],Source  Code,[object Object],Pre-processor,[object Object],    Compiler,[object Object],Assembly  Code,[object Object],  Assembler,[object Object],Libraries,[object Object],  Object   Code,[object Object],      Linker,[object Object],   Executable Code,[object Object]
A Simple Program Example,[object Object],#include <stdio.h>,[object Object],main(),[object Object],{,[object Object],	printf("Programming in C is easy.");,[object Object],},[object Object],Sample Program Output,[object Object],Programming in C is easy.,[object Object]
[object Object],In C, lowercase and uppercase characters are very important! All commands in C must be lowercase. The C programs starting point is identified by the word ,[object Object],	main(),[object Object],	This informs the computer as to where the program actually starts. The brackets that follow the keyword main indicate that there are no arguments supplied to this program (this will be examined later on).,[object Object],	The two braces, { and }, signify the begin and end segments of the program. ,[object Object]
The purpose of the statement,[object Object],	#include <stdio.h>,[object Object],	is to allow the use of the printf statement to provide program output. Text to be displayed by printf() must be enclosed in double quotes. The program has only one statement ,[object Object],	printf("Programming in C is easy.");,[object Object],	printf() is actually a function (procedure) in C that is used for printing variables and text. Where text appears in double quotes "", it is printed without modification. There are some exceptions however.,[object Object]
	This has to do with the and % characters. These characters are modifiers, and for the present the followed by the n character represents a newline character. ,[object Object],	Thus the program prints,[object Object],Programming in C is easy.,[object Object],and the cursor is set to the beginning of the next line. As we shall see later on, what follows the character will determine what is printed, ie, a tab, clear screen, clear line etc. Another important thing to remember is that all C statements are terminated by a semi-colon ; ,[object Object]
[object Object]
program execution begins at main()
keywords are written in lower-case
statements are terminated with a semi-colon
text strings are enclosed in double quotes,[object Object]
A token is a language element that can be used in forming higher level language constructs,[object Object],Equivalent to a ‘word’ in English language,[object Object],Several types of tokens can be used to build a higher level C language construct such as expressions and statements,[object Object],There are 6 kinds of tokens in C:,[object Object],Reserved words (keywords),[object Object],Identifiers,[object Object],Constants,[object Object],String literals,[object Object],Punctuators,[object Object],Operators,[object Object]
Reserved Words,[object Object],Keywords that identify language entities such as statements, data types, language attributes, etc.,[object Object],Have special meaning to the compiler, cannot be used as identifiers in our program.,[object Object],Should be typed in lowercase.,[object Object],Example: const, double, int, main, void, while, for, else (etc..),[object Object]
Identifiers,[object Object],Words used to represent certain program entities (program variables, function names, etc).,[object Object],Example:,[object Object],int my_name; ,[object Object],my_name is an identifier used as a program variable,[object Object],void CalculateTotal(int value),[object Object],CalculateTotal is an identifier used as a function name,[object Object]
Constants,[object Object],Entities that appear in the program code as fixed values.,[object Object],4 types of constants:,[object Object],Integer constants,[object Object],Positive or negative whole numbers with no fractional part,[object Object],Example: ,[object Object],const int MAX_NUM = 10;,[object Object],const int MIN_NUM = -90;,[object Object],Floating-point constants,[object Object],Positive or negative decimal numbers with an integer part, a decimal point and a fractional part,[object Object],Example:,[object Object],const double VAL = 0.5877e2; (stands for 0.5877 x 102),[object Object]
Character constants,[object Object],A character enclosed in a single quotation mark,[object Object],Example:,[object Object],const char letter = ‘n’;,[object Object],const char number = ‘1’;,[object Object],printf(“%c”, ‘S’);,[object Object],Output would be: S,[object Object],Enumeration,[object Object],Values are given as a list,[object Object],Example:,[object Object]
String Literals,[object Object],A sequence of any number of characters surrounded by double quotation marks. ,[object Object],Example:,[object Object],“REFORMASI”,[object Object],“My name is Salman”,[object Object],Example of usage in C program:,[object Object],printf(“My room number is BN-1-012”);,[object Object],Output: My room number is BN-1-012,[object Object]
Punctuators (separators),[object Object],Symbols used to separate different parts of the C program.,[object Object],These punctuators include:,[object Object],[ ] ( ) { } , ; “: * #,[object Object],Usage example:,[object Object]
Operators,[object Object],Tokens that result in some kind of computation or action when applied to variables or or other elements in an expression.,[object Object],Example of operators:,[object Object],* + = - /,[object Object],Usage example:,[object Object],result = total1 + total2;,[object Object]
Structure of a C program,[object Object],Preprocessor directive (header file),[object Object],Program statement,[object Object],},[object Object],Preprocessor directive,[object Object],Global variable declaration,[object Object],Comments,[object Object],Local variable declaration,[object Object],Variable definition,[object Object]
Comments,[object Object],Explanations or annotations that are included in a program for documentation and clarification purpose.,[object Object],Completely ignored by the compiler during compilation and have no effect on program execution.,[object Object],Starts with ‘/*’ and ends with ‘*/’,[object Object],Some compiler support comments starting with ‘//’,[object Object]
Preprocessor Directives,[object Object],The first thing to be checked by the compiler.,[object Object],Starts with ‘#’.,[object Object],Tell the compiler about specific options that it needs to be aware of during compilation.,[object Object],There are a few compiler directives. But only 2 of them will be discussed here.,[object Object],#include <stdio.h>,[object Object],Tell the compiler to include the file stdio.h during compilation,[object Object],Anything in the header file is considered a part of the program,[object Object],#define VALUE 10,[object Object],Tell the compiler to substitute the word VALUE with 10 during compilation,[object Object]
Basic Data Types,[object Object],3 examples of basic data types:,[object Object],int (used to declare numeric program variables of integer type),[object Object],char (used to declare character variable),[object Object],double (used to declare floating point variable),[object Object],In addition, there are float, void, short, long, etc.,[object Object],Declaration: specifies the type of a variable.,[object Object],Example: int local_var;,[object Object],Definition: assigning a value to the declared variable.,[object Object],Example: local_var = 5;,[object Object]
A variable can be declared globally or locally.,[object Object],A globally declared variable can be accessed from all parts of the program.,[object Object],A locally declared variable can only be accessed from inside the function in which the variable is declared.,[object Object]
Statements,[object Object],A specification of an action to be taken by the computer as the program executes.,[object Object],In the previous example, there are 2 lines following variable declaration and variable definition that terminate with semicolon ‘;’. ,[object Object],global_var = local_var + VALUE;,[object Object],printf (“Total sum is: %d”, global_var);,[object Object],Each line is a statement.,[object Object]
Basic Functions,[object Object],A C program consists of one or more functions that contain a group of statements which perform a specific task.,[object Object],A C program must at least have one function: the function main.,[object Object],We can create our own function or use the functions that has been created in the library, in which case we have to include the appropriate header file (example: stdio.h).,[object Object]
In this section, we will learn a few functions that are pre-defined in the header file stdio.h,[object Object],These functions are:,[object Object],printf(),[object Object],scanf(),[object Object],getchar() & putchar(),[object Object], In addition to those functions, we will also learn about Format Specifier and Escape Sequence which are used with printf() and scanf().,[object Object]
printf(),[object Object],Used to send data to the standard output (usually the monitor) to be printed according to specific format.,[object Object],General format:,[object Object],printf(“control string”, variables);,[object Object],Control string is a combination of text, format specifier and escape sequence.,[object Object],Example:,[object Object],printf(“Thank you”);,[object Object],printf (“Total sum is: %d”, global_var);,[object Object],%d is a format specifier,[object Object], is an escape sequence,[object Object]
Format Specifier,[object Object],Tells the printf() function the format of the output to be printed put.,[object Object]
1 de 31

Recomendados

C LANGUAGE NOTES por
C LANGUAGE NOTESC LANGUAGE NOTES
C LANGUAGE NOTESMalikireddy Bramhananda Reddy
2.6K visualizações72 slides
C programming notes BATRACOMPUTER CENTRE IN Ambala CANTT por
C programming notes BATRACOMPUTER CENTRE IN Ambala CANTTC programming notes BATRACOMPUTER CENTRE IN Ambala CANTT
C programming notes BATRACOMPUTER CENTRE IN Ambala CANTTBatra Centre
2K visualizações49 slides
Unit4 por
Unit4Unit4
Unit4MOHAMAD NOH AHMAD
3.1K visualizações19 slides
fundamentals of c por
fundamentals of cfundamentals of c
fundamentals of cVijayalaxmi Wakode
515 visualizações25 slides
Programming in c notes por
Programming in c notesProgramming in c notes
Programming in c notesSudharasanam Babu
713 visualizações11 slides
Introduction to c programming por
Introduction to c programmingIntroduction to c programming
Introduction to c programmingABHISHEK fulwadhwa
4.6K visualizações74 slides

Mais conteúdo relacionado

Mais procurados

best notes in c language por
best notes in c languagebest notes in c language
best notes in c languageIndia
12.8K visualizações128 slides
Data Type in C Programming por
Data Type in C ProgrammingData Type in C Programming
Data Type in C ProgrammingQazi Shahzad Ali
3.1K visualizações50 slides
introduction to c language por
 introduction to c language introduction to c language
introduction to c languageRai University
1.6K visualizações33 slides
Keywords in c language por
Keywords in c languageKeywords in c language
Keywords in c languageJoydeep16
353 visualizações11 slides
Character set of c por
Character set of cCharacter set of c
Character set of cChandrapriya Rediex
3.4K visualizações13 slides
How to execute a C program por
How to execute a C  program How to execute a C  program
How to execute a C program Leela Koneru
1.9K visualizações17 slides

Mais procurados(20)

best notes in c language por India
best notes in c languagebest notes in c language
best notes in c language
India12.8K visualizações
Data Type in C Programming por Qazi Shahzad Ali
Data Type in C ProgrammingData Type in C Programming
Data Type in C Programming
Qazi Shahzad Ali3.1K visualizações
introduction to c language por Rai University
 introduction to c language introduction to c language
introduction to c language
Rai University1.6K visualizações
Keywords in c language por Joydeep16
Keywords in c languageKeywords in c language
Keywords in c language
Joydeep16353 visualizações
Character set of c por Chandrapriya Rediex
Character set of cCharacter set of c
Character set of c
Chandrapriya Rediex3.4K visualizações
How to execute a C program por Leela Koneru
How to execute a C  program How to execute a C  program
How to execute a C program
Leela Koneru1.9K visualizações
C Programming Unit-1 por Vikram Nandini
C Programming Unit-1C Programming Unit-1
C Programming Unit-1
Vikram Nandini507 visualizações
Programming in c por indra Kishor
Programming in cProgramming in c
Programming in c
indra Kishor10.9K visualizações
Notes of c programming 1st unit BCA I SEM por Mansi Tyagi
Notes of c programming  1st unit BCA I SEMNotes of c programming  1st unit BCA I SEM
Notes of c programming 1st unit BCA I SEM
Mansi Tyagi150.9K visualizações
C Programming Language Tutorial for beginners - JavaTpoint por JavaTpoint.Com
C Programming Language Tutorial for beginners - JavaTpointC Programming Language Tutorial for beginners - JavaTpoint
C Programming Language Tutorial for beginners - JavaTpoint
JavaTpoint.Com22.8K visualizações
Book ppt por FALLEE31188
Book pptBook ppt
Book ppt
FALLEE311882.5K visualizações
Programming in c por vineet4523
Programming in cProgramming in c
Programming in c
vineet4523839 visualizações
Programming in C Presentation upto FILE por Dipta Saha
Programming in C Presentation upto FILEProgramming in C Presentation upto FILE
Programming in C Presentation upto FILE
Dipta Saha4.7K visualizações
1. over view and history of c por Harish Kumawat
1. over view and history of c1. over view and history of c
1. over view and history of c
Harish Kumawat10.4K visualizações
Control statements por raksharao
Control statementsControl statements
Control statements
raksharao645 visualizações
C language por SMS2007
C languageC language
C language
SMS2007198 visualizações
Programming Methodology por archikabhatia
Programming MethodologyProgramming Methodology
Programming Methodology
archikabhatia10.1K visualizações
Storage classes in c language por tanmaymodi4
Storage classes in c languageStorage classes in c language
Storage classes in c language
tanmaymodi41.1K visualizações

Similar a C basics 4 std11(GujBoard)

Chapter3 por
Chapter3Chapter3
Chapter3Kamran
1.3K visualizações31 slides
Fundamental of C Programming Language and Basic Input/Output Function por
  Fundamental of C Programming Language and Basic Input/Output Function  Fundamental of C Programming Language and Basic Input/Output Function
Fundamental of C Programming Language and Basic Input/Output Functionimtiazalijoono
503 visualizações41 slides
C programming por
C programmingC programming
C programmingsaniabhalla
9.7K visualizações152 slides
Unit 2 introduction to c programming por
Unit 2   introduction to c programmingUnit 2   introduction to c programming
Unit 2 introduction to c programmingMithun DSouza
304 visualizações39 slides
Sample for Simple C Program - R.D.Sivakumar por
Sample for Simple C Program - R.D.SivakumarSample for Simple C Program - R.D.Sivakumar
Sample for Simple C Program - R.D.SivakumarSivakumar R D .
50 visualizações14 slides
C programming por
C programmingC programming
C programmingPralhadKhanal1
85 visualizações63 slides

Similar a C basics 4 std11(GujBoard)(20)

Chapter3 por Kamran
Chapter3Chapter3
Chapter3
Kamran1.3K visualizações
Fundamental of C Programming Language and Basic Input/Output Function por imtiazalijoono
  Fundamental of C Programming Language and Basic Input/Output Function  Fundamental of C Programming Language and Basic Input/Output Function
Fundamental of C Programming Language and Basic Input/Output Function
imtiazalijoono503 visualizações
C programming por saniabhalla
C programmingC programming
C programming
saniabhalla9.7K visualizações
Unit 2 introduction to c programming por Mithun DSouza
Unit 2   introduction to c programmingUnit 2   introduction to c programming
Unit 2 introduction to c programming
Mithun DSouza304 visualizações
Sample for Simple C Program - R.D.Sivakumar por Sivakumar R D .
Sample for Simple C Program - R.D.SivakumarSample for Simple C Program - R.D.Sivakumar
Sample for Simple C Program - R.D.Sivakumar
Sivakumar R D .50 visualizações
C programming por PralhadKhanal1
C programmingC programming
C programming
PralhadKhanal185 visualizações
Introduction to C Programming por MOHAMAD NOH AHMAD
Introduction to C ProgrammingIntroduction to C Programming
Introduction to C Programming
MOHAMAD NOH AHMAD1.9K visualizações
Unit 4 Foc por JAYA
Unit 4 FocUnit 4 Foc
Unit 4 Foc
JAYA3.1K visualizações
Introduction to C Programming - I por vampugani
Introduction to C Programming - I Introduction to C Programming - I
Introduction to C Programming - I
vampugani612 visualizações
(Lect. 2 & 3) Introduction to C.ppt por atulchaudhary821
(Lect. 2 & 3) Introduction to C.ppt(Lect. 2 & 3) Introduction to C.ppt
(Lect. 2 & 3) Introduction to C.ppt
atulchaudhary8212 visualizações
C notes.pdf por Durga Padma
C notes.pdfC notes.pdf
C notes.pdf
Durga Padma41.5K visualizações
C programming course material por Ranjitha Murthy
C programming course materialC programming course material
C programming course material
Ranjitha Murthy277 visualizações
Programming Fundamentals lecture 5 por REHAN IJAZ
Programming Fundamentals lecture 5Programming Fundamentals lecture 5
Programming Fundamentals lecture 5
REHAN IJAZ127 visualizações
Introduction to C Unit 1 por SURBHI SAROHA
Introduction to C Unit 1Introduction to C Unit 1
Introduction to C Unit 1
SURBHI SAROHA282 visualizações
Programming in C - interview questions.pdf por SergiuMatei7
Programming in C - interview questions.pdfProgramming in C - interview questions.pdf
Programming in C - interview questions.pdf
SergiuMatei717 visualizações
c_pro_introduction.pptx por RohitRaj744272
c_pro_introduction.pptxc_pro_introduction.pptx
c_pro_introduction.pptx
RohitRaj74427214 visualizações
Introduction%20C.pptx por 20EUEE018DEEPAKM
Introduction%20C.pptxIntroduction%20C.pptx
Introduction%20C.pptx
20EUEE018DEEPAKM10 visualizações
1. introduction to computer por Shankar Gangaju
1. introduction to computer1. introduction to computer
1. introduction to computer
Shankar Gangaju105 visualizações
Cnotes por Muthuganesh S
CnotesCnotes
Cnotes
Muthuganesh S116 visualizações

Último

VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue por
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueVNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueShapeBlue
203 visualizações54 slides
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue por
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueShapeBlue
222 visualizações7 slides
LLMs in Production: Tooling, Process, and Team Structure por
LLMs in Production: Tooling, Process, and Team StructureLLMs in Production: Tooling, Process, and Team Structure
LLMs in Production: Tooling, Process, and Team StructureAggregage
42 visualizações77 slides
State of the Union - Rohit Yadav - Apache CloudStack por
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStackShapeBlue
297 visualizações53 slides
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... por
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...ShapeBlue
126 visualizações10 slides
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023 por
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023BookNet Canada
44 visualizações19 slides

Último(20)

VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue por ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlueVNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
VNF Integration and Support in CloudStack - Wei Zhou - ShapeBlue
ShapeBlue203 visualizações
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue por ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlueElevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
Elevating Privacy and Security in CloudStack - Boris Stoyanov - ShapeBlue
ShapeBlue222 visualizações
LLMs in Production: Tooling, Process, and Team Structure por Aggregage
LLMs in Production: Tooling, Process, and Team StructureLLMs in Production: Tooling, Process, and Team Structure
LLMs in Production: Tooling, Process, and Team Structure
Aggregage42 visualizações
State of the Union - Rohit Yadav - Apache CloudStack por ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue297 visualizações
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... por ShapeBlue
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
ShapeBlue126 visualizações
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023 por BookNet Canada
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
BookNet Canada44 visualizações
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue por ShapeBlue
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlueCloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue
CloudStack Object Storage - An Introduction - Vladimir Petrov - ShapeBlue
ShapeBlue138 visualizações
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... por ShapeBlue
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
ShapeBlue106 visualizações
Qualifying SaaS, IaaS.pptx por Sachin Bhandari
Qualifying SaaS, IaaS.pptxQualifying SaaS, IaaS.pptx
Qualifying SaaS, IaaS.pptx
Sachin Bhandari1K visualizações
The Power of Generative AI in Accelerating No Code Adoption.pdf por Saeed Al Dhaheri
The Power of Generative AI in Accelerating No Code Adoption.pdfThe Power of Generative AI in Accelerating No Code Adoption.pdf
The Power of Generative AI in Accelerating No Code Adoption.pdf
Saeed Al Dhaheri32 visualizações
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda... por ShapeBlue
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
Hypervisor Agnostic DRS in CloudStack - Brief overview & demo - Vishesh Jinda...
ShapeBlue161 visualizações
Transcript: Redefining the book supply chain: A glimpse into the future - Tec... por BookNet Canada
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
BookNet Canada41 visualizações
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... por TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc170 visualizações
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ... por Jasper Oosterveld
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
ESPC 2023 - Protect and Govern your Sensitive Data with Microsoft Purview in ...
Jasper Oosterveld35 visualizações
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ... por ShapeBlue
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
How to Re-use Old Hardware with CloudStack. Saving Money and the Environment ...
ShapeBlue166 visualizações
The Role of Patterns in the Era of Large Language Models por Yunyao Li
The Role of Patterns in the Era of Large Language ModelsThe Role of Patterns in the Era of Large Language Models
The Role of Patterns in the Era of Large Language Models
Yunyao Li85 visualizações
Evaluation of Quality of Experience of ABR Schemes in Gaming Stream por Alpen-Adria-Universität
Evaluation of Quality of Experience of ABR Schemes in Gaming StreamEvaluation of Quality of Experience of ABR Schemes in Gaming Stream
Evaluation of Quality of Experience of ABR Schemes in Gaming Stream
Alpen-Adria-Universität38 visualizações
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue por ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlueWhat’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
What’s New in CloudStack 4.19 - Abhishek Kumar - ShapeBlue
ShapeBlue263 visualizações
Why and How CloudStack at weSystems - Stephan Bienek - weSystems por ShapeBlue
Why and How CloudStack at weSystems - Stephan Bienek - weSystemsWhy and How CloudStack at weSystems - Stephan Bienek - weSystems
Why and How CloudStack at weSystems - Stephan Bienek - weSystems
ShapeBlue238 visualizações

C basics 4 std11(GujBoard)