How do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
which one is better structure or union?(other than the space occupied )
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
What is the use of the function in c?
can we write a program in c for printf and scanf without using header file stdio.h
How the C program can be compiled?
What are the advantages of using Unions?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Write a program to reverse a given number in c?
How do I use strcmp?