Is fortran still used in 2018?
No Answer is Posted For this Question
Be the First to Post Answer
C program to find frequency of each character in a text file?
What is wild pointer in c?
What is the newline escape sequence?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
Is null valid for pointers to functions?
Is it fine to write void main () or main () in c?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Explain in detail how strset (string handling function works )pls explain it with an example.
Is c# a good language?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.