What is a scope resolution operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is a void pointer? When is a void pointer used?
write a c program to convert fahrenheit to celsius?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
program to print upper & lower triangle of a matrix
Does c have function or method?
How many data structures are there in c?
What are static functions?
What is C language Terminator?
#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?
What is modeling?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }