Intro to C programming
Time to really be a programmer and crack any interview.
Are you a beginner intermediate or at advance level.
So lets first have self evaluation.🙏
if i say write a program to print hello world in C.
so that's what you write if you are using Dev C++
#include<stdio.h>
#include<conio.h>
int main()
{
printf("hello world");
}
questions that arise from this basic program
1)what's the use of stdio.h and conio.h?
2)why do we write int in Dev C++ and void in turbo C?
3)what will be the error if i write mainsexamp() instead of main()?
4)why do we write printf() in C and print in other programming language except C++ ?
5)what is the difference between "{}"parenthesis and ";" semicolon?
6)whats the output of my program
int main()
{
}
without searching their answers take your evaluation test.rate yourself and see what you missed during your studies. I have seen a lots of memes where people ask why we were taught sin cos or any mathematical formulas. So if you are a programmer now ask this questions yourself and try to make yourself a master in programming.
Best Of Luck for your future and Stay tuned.
Comments
Post a Comment