What are the types of variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is available in C language but not in C++?
10 Answers CTS, TCS,
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
What does %c mean in c?
Describe the modifier in c?
Was 2000 a leap year?
What is the purpose of #pragma directives in C?
Why do we use null pointer?
Why do we use int main?
write a program to insert an element at the specified position in the given array in c language
How does pointer work in c?
what is printf