#include<stdio.h> void main() { int a=10,b=20,c=30;
printf("%d",scanf("%d%d%d",&a,&b,&c)); }
what is the output for this?
Answer Posted / magesh
0
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
What is file in c language?
Are negative numbers true in c?
What are types of structure?
Is c compiled or interpreted?
Tell me the use of bit field in c language?
Explain union. What are its advantages?
What is the difference between call by value and call by reference in c?
Define Spanning-Tree Protocol (STP)
Who invented b language?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Explain modulus operator. What are the restrictions of a modulus operator?
What is an identifier?
Write a program to swap two numbers without using a temporary variable?
What is structure of c program?