What is the use of header?
No Answer is Posted For this Question
Be the First to Post Answer
how to generate the length of a string without using len funtion?
Write a program to identify if a given binary tree is balanced or not.
How do you write a program which produces its own source code as its output?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What is the purpose of the preprocessor directive error?
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What does sizeof return c?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Is c still used in 2019?
Explain void pointer?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }