What is the Output | C Programming Questions & Answers | Video Tutorials

preview_player
Показать описание
Here in this c programming language video tutorial for beginners we give you a c aptitude program which will be normally asked in interviews and you have to guess the output of the program. In the end we explain the output.

Watch the entire series at

Get the source code of this tutorial at our website

Watch Video tutorials in HINDI at

Catch us on SocialMedia
Рекомендации по теме
Комментарии
Автор

What is the Output | C Interview, Aptitude Programs, Questions & Answers | Video Tutorials for Freshers

LearningLad
Автор

include <stdio.h>
#define sqr(x) (x*x)
int main()
{
int b=3;
int a;
a=sqr(b+3);
printf("%d\n", a);
return 0;
}
result:15
how do we get it..pls explain

kirankumar-sbmo