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 |
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Write a pro-gramme to determine whether the number is even or odd?
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
What type of function is main ()?
What is function prototype in c with example?
Explain the difference between strcpy() and memcpy() function?
What is the difference between malloc calloc and realloc in c?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
What are the concepts introduced in OOPs?