how to print a statement in c without use of console
statement ,with the help of if statement it should print
Answer Posted / deepanshu kakkar
#include<stdio.h>
void main()
{
if(printf("deepanshu kakkar"));
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
what is a constant pointer in C
What is int main () in c?
What is gets() function?
how to introdu5ce my self in serco
How can I generate floating-point random numbers?
Explain heap and queue.
What is bash c?
What is difference between union and structure in c?
What is pragma c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between volatile and const volatile?
Can you subtract pointers from each other? Why would you?
What is the use of sizeof () in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What does the message "automatic aggregate intialization is an ansi feature" mean?