What are the c keywords?
No Answer is Posted For this Question
Be the First to Post Answer
What does sizeof int return?
How to receive strings with spaces in scanf()
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
How to write c functions that modify head pointer of a linked list?
what is develop in c language
simple program of graphics and their output display
#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?
Is it possible to run using programming C for Java Application?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What is mean by data types in c?
What is the use of sizeof?
how can i get output like this? 1 2 3 4 5 6