Common Error #3: Invalid Preprocessor Directives - C Language Basics

C examples for Language Basics:Hello World

Introduction

The following program block with a misspelled library name in the preprocessor directive?

#include <sdio.h> 
int main()
{ 
  printf("Welcome to C Programming\n"); 
}

Related Tutorials