What is abstract data structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
sir, i cannot find the way how to write aprogram by using array on queue
can a union be self-referenced?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
What is structure in c definition?
What does #pragma once mean?
What does the && operator do in a program code?
What are the different types of endless loops?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
WAP to accept first name,middle name & last name of a student display its initials?
Write a program for Overriding.
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"