Answer Posted / chinna
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%d");
}
| Is This Answer Correct ? | 15 Yes | 10 No |
Post New Answer View All Answers
What is the difference between scanf and fscanf?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Write a Program to find whether the given number or string is palindrome.
What is the use of getch ()?
Differentiate between full, complete & perfect binary trees.
Did c have any year 2000 problems?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the difference between malloc() and calloc() function in c language?
what is recursion in C
please send me the code for multiplying sparse matrix using c
What is the difference between text and binary i/o?
What does printf does?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is c language used for?
Define macros.