What are the applications of c language?
Answer / Krish
C is widely used for system programming, embedded systems, game development, operating systems, web browsers (like Firefox and Chrome), and compilers (like GCC).
| Is This Answer Correct ? | 0 Yes | 0 No |
How can a string be converted to a number?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
what is the code for getting the output as * ** ***
What are the disadvantages of external storage class?
What is typedef example?
how to create duplicate link list using C???
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What are Macros? What are its advantages and disadvantages?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
Explain how can I write functions that take a variable number of arguments?
Is null always defined as 0(zero)?