how to print a statement in c without use of console
statement ,with the help of if statement it should print
Answers were Sorted based on User's Feedback
Answer / deepanshu kakkar
#include<stdio.h>
void main()
{
if(printf("deepanshu kakkar"));
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Which is the memory area not included in C program? give the reason
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is the equivalent code of the following statement in WHILE LOOP format?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is double link list a linear data structure? If Yes, Why?If No, Why?
write a program in C to swap two variables
How do we open a binary file in Read/Write mode in C?
what is void pointer?
Whats s or c mean?
Tell me about low level programming languages.
what is c++ programming?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,