Is c still used?
No Answer is Posted For this Question
Be the First to Post Answer
how can i calculate mean,median,mode by using c program
What does #pragma once mean?
What is the use of static variable in c?
what is the format specifier for printing a pointer value?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
How can I write a function that takes a format string and a variable number of arguments?
code for bubble sort?
Is null a keyword in c?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
Why does not c have an exponentiation operator?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .