1. What is the output of the below c code?
#include<stdio.h>
main()
{
int x = 5;
if(x=5)
{
if(x=5) printf("Fast");
}
printf("learning");
}
-->
#include<stdio.h>
main()
{
int x = 5;
if(x=5)
{
if(x=5) printf("Fast");
}
printf("learning");
}
تعليقات: 0
إرسال تعليق