How can I access an I o board directly?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What do the functions atoi(), itoa() and gcvt() do?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
write a program to print %d ?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What is a structure and why it is used?
What is c definition?
Explain what is the benefit of using #define to declare a constant?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type