Write a program to print numbers from 1 to 100 without using loop in c?
No Answer is Posted For this Question
Be the First to Post Answer
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Explain the difference between ++u and u++?
Explain how can I pad a string to a known length?
what is the use of call back function in c?tell me with example
write a program to count the no of repaeted words in a line?
What language is lisp written in?
What is the difference between a structure and a union?
What is the concatenation operator?
inline function is there in c language?
what are the files which are automatically opened when a c file is executed?
Toggle nth bit in a given integer - num