What is abstract data structure in c?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
What is Dynamic Initialization.
c program to arrange digits in a no in ascending and descending order
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What are the different types of errors?
What is self-referential structure in c programming?
convert 12345 to 54321 withoutusing strig
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
write a program in c language to print your bio-data on the screen by using functions.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?