What is void main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
who is the father of C Language?
20 Answers CTS, UST,
how to create c progarm without void main()?
What is the memory allocated by the following definition ? int (*x)[10];
Is fortran still used today?
What are the modifiers available in c programming language?
What is getche() function?
What is the ANSI C Standard?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Explain what is the benefit of using const for declaring constants?
how do we remove the printed character in printf statement and write next it it
Explain how can I pad a string to a known length?