Posts

Featured post

-Write C program to find even and odd number using macro

-Write C program to find even and odd number using macro #include<stdio.h> #define number(n)((n%2==0)?1:0) int main() { int num; printf("enter any number"); scanf("%d",&num); if(number(num)) printf("number is even"); else printf("number is odd"); return 0; } ***************************Output*********************** amr@amrj-virtual-machine:~$ gccevenodd.c amr@samr-virtual-machine:~$ ./a.out enter any number 2 number is evensmj@amr-virtual-machine:~$

Unhandled Exception: FormatException: Invalid radix-10 number (at character 1) E/flutter (23894): null

   Unhandled Exception: FormatException: Invalid radix-10 number (at character 1) E/flutter (23894): null this Errro showing beacuse you not parsing  json parsing. for json Parsing: - dart variable like char, double or int another json parsing like below showing here Ex: - int.parse(json['demo'].toString); just like parse the in the model class in flutter  Solution:   if (json[ 'minimum_order_qty' ] != null ) {       _minimumOrderQty = int.parse(json[ 'minimum_order_qty' ].toString());     }

A problem occurred evaluating root project 'android'. > A problem occurred configuring project ':app'. how to solve in flutter error

https://amreshtechknowledge.blogspot.com/2022/10/a-problem-occurred-evaluating-root.html  fist go to your Android inside then go build.gradle   showing  subprojects {     project.evaluationDependsOn( ':app' ) } //comment this line                                                                                                                                                        

A problem occurred evaluating root project 'android'. > A problem occurred configuring project ':app'. how to solve in flutter error

#flutter #Build file 'D:\demo\android\build.gradle' line: 30 how to solve the error in flutter * What went wrong: A problem occurred evaluating root project 'android'. > A problem occurred configuring project ':app'.    > Could not open proj generic class cache for build file 'D:\demo\android\app\build.gradle' (C:\Users\User\.gradle\caches\7.4\scripts\2km7019czj57pdwhwiktpxuex).               > BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 63 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your ow...

my information

  เคนेเคฒो เคฆोเคธ्เคคों เคธเคตाเค—เคค เค†เคช เคธเคญी เค•ा เคฎेเคฐे เคฌ्เคฒॉเค—เคฐ เคตेเคฌเคธाเค‡เคŸ เคฎें  เคช्เคฏाเคฐे เคฆोเคธ्เคคों เคเคตं เคธाเคฅिเคฏो เค‡เคธ เคฌ्เคฒॉเค—เคฐ เคตेเคฌเคธाเค‡เคŸ เค•ा เค•ा เคธिเคฐ्เคซ เคฏเคนी เคชเคฐ्เคชเคธ เคนै  เคŸेเค•्เคจिเค•เคฒ เคจॉเคฒेเคœ เคถेเคฏเคฐ เค•เคฐเคจा เคšाเคนเคคा เคนु 
Chapter 1. Introduction to Software Quality Que : Multiple Choice Question. 1.The term middleware is sometimes referred to an interface between_____. a. different kinds of hardware.                                                                                                                              b .system software & application software                                                                     ...

flutter Type is String but int

If you have created the model classs In  flutter will be check the parse the model where showing the error 

Java Program to Print an Integer (Entered by the User)

   Java Program to Print an Integer (Entered by the User) import java.util.Scanner; class Int{ public static void main(String args[]) { int num;   System.out.println("Enter value is:");    Scanner obj=new Scanner(System.in); num=obj.nextInt(); System.out.println("Eneterd value is:"+num);     } }