What is an example of structure?
No Answer is Posted For this Question
Be the First to Post Answer
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
write a program that will print %d in the output screen??
what is stack , heap ,code segment,and data segment
How to add two numbers without using semicolon at runtime
What is the difference between the expression “++a” and “a++”?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
how many error occurs in C language ?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
can v write main() { main(); } Is it true?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }