Question:
C Program to print numbers from 1 to N without using the semicolon?
Solution:
#include<stdio.h>
#define N 10
int main(int num)
{
if (num <= N && printf("%d ", num) && main(num + 1))
{
}
}
Interviews Questions, Algorithms, Aptitude, C Interview Program, C Theory Question, Aptitude Tricks, Test Series,
This Blog has been created keeping in mind all the difficulties faced by me and my friends during Practical Sessions. So, considering ...
0 comments:
Post a Comment