I am using Qt 5.6 during compilation it stops and gives error about Qmake
The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"
No Answer is Posted For this Question
Be the First to Post Answer
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
Declaration of Cube Guys please help me.. Is this a right way to declare cube.? If i Compile it. It Says: Cube undeclared what should i do? Please help \thanks in advanced #include<stdio.h> #include<math.h> #include<conio.h> main( ) { float x,y; while(x++<10.0) { printf("Enter Number:"); scanf("%d", &x); y = cube(x); printf("%f %f %f \n", x,pow(x,2),y); cube(x); } { float x; float y; y = x*x*x; } getch(); return (y); }
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
WHAT WILL BE THE OUTPUT OF THE FOLLOWING QUESTION void main() { int x=4,y=3,z; z=x-- -y; printf("%d%d%d",x,y,z); }
write a profram for selection sort whats the error in it?
Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.
full c programming error question based problem
errors are known as?
3 Answers EX, State Bank Of India SBI,
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
To generate the series 1+3+5+7+... using C program
how to convert decimal to hexadecimal without using arrays just loops
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }