What is c basic?
No Answer is Posted For this Question
Be the First to Post Answer
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Can you define which header file to include at compile time?
print the palindrome numbers in between 0 to n
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is a ternary operator in c?
how to find the size of the data type like int,float without using the sizeof operator?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Why c is called object oriented language?
Disadvantages of C language.
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What are the types of pointers in c?