What is the difference between struct and typedef struct in c?
write a program to display the frequency of each element in a given array in c language
In scanf h is used for
What does %c mean in c?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
what is the advantage of software development
what is self refrential structure
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Is c compiled or interpreted?