How many data structures are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to execute with out main in cprogram
Should a function contain a return statement if it does not return a value?
code for reverse alternate words from astring
write a c program to calculate sum of digits till it reduces to a single digit using recursion
write a program to add two numbers of any size.....(remember any size)
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
Differentiate b/w Modify and Update commands giving example.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Write a code to remove duplicates in a string.
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What are the uses of pre-processor directives?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?