what is the program to display your name in any color?
Answers were Sorted based on User's Feedback
Answer / subham verma
We can display it using Paint.
Thanks and regards:-
SUBHAM VERMA
| Is This Answer Correct ? | 0 Yes | 2 No |
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Explain what are binary trees?
Why is extern used in c?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
Why header file is used in c?
What is function pointer c?
Can we change the value of static variable in c?
Write a program that can show the multiplication table.
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor