What does %f mean c?
Answer / amit
%f mean in C is that it is a format specifier of float data type which store decimal value up to 4 bit ,simply it indicate data type
| Is This Answer Correct ? | 0 Yes | 0 No |
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
What is the best way to store flag values in a program?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is difference between structure and union in c?
What is indirection in c?
can we declare a function in side the structure?
what is the output of below int n=10; (n++)++; printf("%d",n);
hat is a pointer?
What is the use of getchar functions?
What is indirection?
who did come first hen or agg