What is difference between array and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C function to search a number in the given list of numbers. donot use printf and scanf
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is an arrays?
How can this be legal c?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
Can we declare function inside main?
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
Is c is a low level language?