What is the use of putchar function?
No Answer is Posted For this Question
Be the First to Post Answer
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Write a simple program to find the size of different basic data types in C.
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
which one low Priority in c? a)=,b)++,c)==,d)+
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
explain what is a newline escape sequence?
difference between the array and linked list general difference related to memory
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
Explain how do you generate random numbers in c?
Explain the bubble sort algorithm.