application areas a 'c'
a) operating system
b) graphics, interpreter, assembler
c) program evalution, communication softwares
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
main difference between c and c++ language
What is a pointer and how it is initialized?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
1 Answers 91mobiles, Amazon, App Guruz, College School Exams Tests, Folio3, Infosys, Omega, Planin, Riphah International University, Subex,
Where is c used?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What are structural members?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
What is the use of define in c?
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
What library is sizeof in c?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }