What is stack in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 types of programming language?
What is difference between main and void main?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
write a programe returns the number of times the character appears in the string
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
Explain how does flowchart help in writing a program?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What is the total generic pointer type?